{
  "manifest_version": "1.0.0",
  "template": {
    "id": "9b3f0ea8-b5f3-4f5f-9620-a1c17214c2bc",
    "slug": "securo",
    "name": "securo",
    "description": "Self-host your personal finances with Securo on Railway",
    "url": "https://railway.com/deploy/securo",
    "upstream": {
      "repo_url": "https://github.com/monotykamary/railway-template-securo"
    }
  },
  "services": [
    {
      "name": "celery-beat",
      "source": {
        "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "frontend",
      "source": {
        "repo": "https://github.com/monotykamary/railway-template-securo"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "redis",
      "source": {
        "image": "redis:8-alpine@sha256:978f0e01593e65eed801f2402944efcd936d43b5027e4908a7897baf88ed6241"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "backend",
      "source": {
        "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
      },
      "needs_volume": true,
      "volume_mount_path": "/app/data/attachments",
      "http": false
    },
    {
      "name": "postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18@sha256:3b8bc16ccb823c9a293b09d20d4180049502ee2b243b5989d59e258450044e22"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "celery-worker",
      "source": {
        "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "DEBUG",
      "service": "celery-beat",
      "description": "Enable verbose debug logging in the Securo backend.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "REDIS_URL",
      "service": "celery-beat",
      "description": "Redis broker URL shared by the Celery worker and beat services.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SECRET_KEY",
      "service": "celery-beat",
      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "DATABASE_URL",
      "service": "celery-beat",
      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "FRONTEND_URL",
      "service": "celery-beat",
      "description": "Public URL of the frontend, used for CORS and generated links.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AGENTS_ENABLED",
      "service": "celery-beat",
      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "STORAGE_LOCAL_PATH",
      "service": "celery-beat",
      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/attachments"
    },
    {
      "key": "TESOURO_DIRETO_ENABLED",
      "service": "celery-beat",
      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "AGENTS_KNOWLEDGE_STORAGE_PATH",
      "service": "celery-beat",
      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/agent_knowledge"
    },
    {
      "key": "BACKEND_URL",
      "service": "frontend",
      "description": "Backend base URL over Railway private networking; used by the nginx adapter.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "FRONTEND_URL",
      "service": "frontend",
      "description": "This service's public URL, exposed to the SPA at build time.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "REDIS_URL",
      "service": "redis",
      "description": "Self-referencing Redis URL for local tooling.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "redis",
      "description": "Password required by Redis (--requirepass); generated automatically on deploy.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DEBUG",
      "service": "backend",
      "description": "Enable verbose debug logging in the Securo backend.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "REDIS_URL",
      "service": "backend",
      "description": "Redis broker URL shared by the Celery worker and beat services.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SECRET_KEY",
      "service": "backend",
      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "DATABASE_URL",
      "service": "backend",
      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "FRONTEND_URL",
      "service": "backend",
      "description": "Public URL of the frontend, used for CORS and generated links.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AGENTS_ENABLED",
      "service": "backend",
      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "STORAGE_LOCAL_PATH",
      "service": "backend",
      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/attachments"
    },
    {
      "key": "TESOURO_DIRETO_ENABLED",
      "service": "backend",
      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "AGENTS_KNOWLEDGE_STORAGE_PATH",
      "service": "backend",
      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/agent_knowledge"
    },
    {
      "key": "PGDATA",
      "service": "postgres",
      "description": "Postgres data directory inside the persistent volume.",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "POSTGRES_DB",
      "service": "postgres",
      "description": "Database name.",
      "secret": false,
      "strategy": "default",
      "default": "securo"
    },
    {
      "key": "DATABASE_URL",
      "service": "postgres",
      "description": "Connection string used by the backend services.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "postgres",
      "description": "Postgres superuser name.",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "postgres",
      "description": "Postgres superuser password; generated automatically on deploy.",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DEBUG",
      "service": "celery-worker",
      "description": "Enable verbose debug logging in the Securo backend.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "REDIS_URL",
      "service": "celery-worker",
      "description": "Redis broker URL shared by the Celery worker and beat services.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SECRET_KEY",
      "service": "celery-worker",
      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "DATABASE_URL",
      "service": "celery-worker",
      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "FRONTEND_URL",
      "service": "celery-worker",
      "description": "Public URL of the frontend, used for CORS and generated links.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AGENTS_ENABLED",
      "service": "celery-worker",
      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "STORAGE_LOCAL_PATH",
      "service": "celery-worker",
      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/attachments"
    },
    {
      "key": "TESOURO_DIRETO_ENABLED",
      "service": "celery-worker",
      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "AGENTS_KNOWLEDGE_STORAGE_PATH",
      "service": "celery-worker",
      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
      "secret": false,
      "strategy": "default",
      "default": "/app/data/agent_knowledge"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "securo"
      }
    },
    "cli": "railway deploy --template securo",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "9b3f0ea8-b5f3-4f5f-9620-a1c17214c2bc",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "0e7c712e-d3a2-441d-a7bf-9f41362a261d": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "celery-beat",
                  "deploy": {
                    "startCommand": "celery -A app.worker beat --loglevel=info",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
                  },
                  "variables": {
                    "DEBUG": {
                      "isOptional": false,
                      "description": "Enable verbose debug logging in the Securo backend.",
                      "defaultValue": "false"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis broker URL shared by the Celery worker and beat services.",
                      "defaultValue": "redis://:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379/0"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
                      "defaultValue": "postgresql+asyncpg://postgres:${{postgres.POSTGRES_PASSWORD}}@${{postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/securo"
                    },
                    "FRONTEND_URL": {
                      "isOptional": false,
                      "description": "Public URL of the frontend, used for CORS and generated links.",
                      "defaultValue": "${{frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AGENTS_ENABLED": {
                      "isOptional": false,
                      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
                      "defaultValue": "false"
                    },
                    "STORAGE_LOCAL_PATH": {
                      "isOptional": false,
                      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
                      "defaultValue": "/app/data/attachments"
                    },
                    "TESOURO_DIRETO_ENABLED": {
                      "isOptional": false,
                      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
                      "defaultValue": "true"
                    },
                    "AGENTS_KNOWLEDGE_STORAGE_PATH": {
                      "isOptional": false,
                      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
                      "defaultValue": "/app/data/agent_knowledge"
                    }
                  }
                },
                "4a965333-55a5-4979-a1f3-328140210314": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "frontend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ON_FAILURE",
                    "healthcheckTimeout": 600,
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/monotykamary/railway-template-securo",
                    "commitSha": "8141138d0f89c77e5ce60fa8065b967a45aedd88",
                    "rootDirectory": null
                  },
                  "variables": {
                    "BACKEND_URL": {
                      "isOptional": false,
                      "description": "Backend base URL over Railway private networking; used by the nginx adapter.",
                      "defaultValue": "http://${{backend.RAILWAY_PRIVATE_DOMAIN}}:8000"
                    },
                    "FRONTEND_URL": {
                      "isOptional": false,
                      "description": "This service's public URL, exposed to the SPA at build time.",
                      "defaultValue": "${{RAILWAY_PUBLIC_DOMAIN}}"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  }
                },
                "4bc0ba79-340a-4010-ace4-4a01815c2cc6": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "redis",
                  "deploy": {
                    "startCommand": "sh -c 'exec redis-server --appendonly yes --requirepass \"$REDIS_PASSWORD\"'",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8-alpine@sha256:978f0e01593e65eed801f2402944efcd936d43b5027e4908a7897baf88ed6241"
                  },
                  "variables": {
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Self-referencing Redis URL for local tooling.",
                      "defaultValue": "redis://:${{REDIS_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:6379/0"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Password required by Redis (--requirepass); generated automatically on deploy.",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  }
                },
                "a5f6b39b-5332-464c-81a5-2877005f1101": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "backend",
                  "deploy": {
                    "startCommand": "sh -c 'alembic upgrade head > /tmp/migrate.log 2>&1 & exec uvicorn app.main:app --host 0.0.0.0 --port 8000'",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
                  },
                  "variables": {
                    "DEBUG": {
                      "isOptional": false,
                      "description": "Enable verbose debug logging in the Securo backend.",
                      "defaultValue": "false"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis broker URL shared by the Celery worker and beat services.",
                      "defaultValue": "redis://:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379/0"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
                      "defaultValue": "postgresql+asyncpg://postgres:${{postgres.POSTGRES_PASSWORD}}@${{postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/securo"
                    },
                    "FRONTEND_URL": {
                      "isOptional": false,
                      "description": "Public URL of the frontend, used for CORS and generated links.",
                      "defaultValue": "${{frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AGENTS_ENABLED": {
                      "isOptional": false,
                      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
                      "defaultValue": "false"
                    },
                    "STORAGE_LOCAL_PATH": {
                      "isOptional": false,
                      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
                      "defaultValue": "/app/data/attachments"
                    },
                    "TESOURO_DIRETO_ENABLED": {
                      "isOptional": false,
                      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
                      "defaultValue": "true"
                    },
                    "AGENTS_KNOWLEDGE_STORAGE_PATH": {
                      "isOptional": false,
                      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
                      "defaultValue": "/app/data/agent_knowledge"
                    }
                  },
                  "networking": {},
                  "volumeMounts": {
                    "a5f6b39b-5332-464c-81a5-2877005f1101": {
                      "mountPath": "/app/data/attachments",
                      "backupSchedules": [
                        "DAILY"
                      ]
                    }
                  }
                },
                "ab9b5f7e-d991-427b-8929-0eda743e3df2": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18@sha256:3b8bc16ccb823c9a293b09d20d4180049502ee2b243b5989d59e258450044e22"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Postgres data directory inside the persistent volume.",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database name.",
                      "defaultValue": "securo"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Connection string used by the backend services.",
                      "defaultValue": "postgresql+asyncpg://postgres:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/securo"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Postgres superuser name.",
                      "defaultValue": "postgres"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Postgres superuser password; generated automatically on deploy.",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "ab9b5f7e-d991-427b-8929-0eda743e3df2": {
                      "mountPath": "/var/lib/postgresql/data",
                      "backupSchedules": [
                        "DAILY"
                      ]
                    }
                  }
                },
                "af0d8e8e-4cf3-49ba-8000-7ec356b9587c": {
                  "icon": "https://raw.githubusercontent.com/monotykamary/railway-template-securo/7eaca13f8ac2459ccd6a9aff965228d1f5a4ba27/assets/securo-icon.png",
                  "name": "celery-worker",
                  "deploy": {
                    "startCommand": "celery -A app.worker worker --loglevel=info --concurrency=2",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/securo-finance/securo-backend:0.16.0@sha256:f452147e07f1faab4dd8c5c654094fe0a9a7a65e6d9b201b8d06edca75951ab2"
                  },
                  "variables": {
                    "DEBUG": {
                      "isOptional": false,
                      "description": "Enable verbose debug logging in the Securo backend.",
                      "defaultValue": "false"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Redis broker URL shared by the Celery worker and beat services.",
                      "defaultValue": "redis://:${{redis.REDIS_PASSWORD}}@${{redis.RAILWAY_PRIVATE_DOMAIN}}:6379/0"
                    },
                    "SECRET_KEY": {
                      "isOptional": false,
                      "description": "Secret key used to sign sessions and tokens; generated automatically on deploy.",
                      "defaultValue": "{{SECRET_KEY}}"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Async SQLAlchemy connection string to PostgreSQL over Railway private networking.",
                      "defaultValue": "postgresql+asyncpg://postgres:${{postgres.POSTGRES_PASSWORD}}@${{postgres.RAILWAY_PRIVATE_DOMAIN}}:5432/securo"
                    },
                    "FRONTEND_URL": {
                      "isOptional": false,
                      "description": "Public URL of the frontend, used for CORS and generated links.",
                      "defaultValue": "${{frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AGENTS_ENABLED": {
                      "isOptional": false,
                      "description": "Enable the agents/LLM knowledge-base feature (requires LLM provider credentials and per-feature volumes). Defaults to off.",
                      "defaultValue": "false"
                    },
                    "STORAGE_LOCAL_PATH": {
                      "isOptional": false,
                      "description": "Local directory for uploaded transaction attachments (backed by the attached volume).",
                      "defaultValue": "/app/data/attachments"
                    },
                    "TESOURO_DIRETO_ENABLED": {
                      "isOptional": false,
                      "description": "Enable Brazilian Tesouro Direto government-bond asset pricing.",
                      "defaultValue": "true"
                    },
                    "AGENTS_KNOWLEDGE_STORAGE_PATH": {
                      "isOptional": false,
                      "description": "Storage path for the agent knowledge base; used when AGENTS_ENABLED=true.",
                      "defaultValue": "/app/data/agent_knowledge"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "frontend",
      "method": "GET",
      "path": "/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 6,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T10:14:37.339Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-19T16:28:31.001Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_4e6fac577d0f4c4eb9fa",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 106,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "celery-worker"
  }
}
