File size: 402 Bytes
f35583f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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: '["*"]'
|