| services: | |
| - type: web | |
| name: trust-first-copilot-backend | |
| env: python | |
| region: singapore | |
| plan: free | |
| buildCommand: pip install -r requirements.txt | |
| startCommand: uvicorn main:app --host 0.0.0.0 --port $PORT | |
| envVars: | |
| - key: PYTHON_VERSION | |
| value: 3.11.9 | |
| - key: PORT | |
| value: 10000 | |
| - key: BACKEND_CORS_ORIGINS | |
| value: '["*"]' | |