api-workflow-builder / config.json
kenken999's picture
Upload folder using huggingface_hub
69996c8 verified
{
"app": {
"name": "API Workflow Builder",
"version": "1.0.0",
"description": "Visual page builder for API workflows"
},
"supabase": {
"url": "https://rootomzbucovwdqsscqd.supabase.co",
"anonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InJvb3RvbXpidWNvdndkcXNzY3FkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzU4OTE4ODMsImV4cCI6MjA1MTQ2Nzg4M30.fYKOe-HPh4WUdvBhEJxakLWCMQBp4E90EDwARk7ucf8",
"tables": {
"pages": "page_builder_pages",
"logs": "api_execution_logs"
}
},
"api": {
"baseUrl": "https://your-api.com",
"authType": "none",
"authToken": "",
"endpoints": {
"productSearch": "/api/products/search",
"customerSearch": "/api/customers/search",
"assessmentSearch": "/api/assessments/search",
"productRegister": "/api/products/register",
"emailNotification": "/api/notifications/email"
}
},
"blocks": {
"categories": [
{
"id": "api",
"label": "API Blocks",
"enabled": true
},
{
"id": "ui",
"label": "UI Components",
"enabled": true
},
{
"id": "custom",
"label": "Custom Blocks",
"enabled": false
}
]
},
"editor": {
"autosave": true,
"storageType": "local",
"canvas": {
"styles": [
"https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/css/bootstrap.min.css"
],
"scripts": [
"https://code.jquery.com/jquery-3.5.1.min.js"
]
}
}
}