Spaces:
Running
Running
File size: 447 Bytes
ecef9b0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | services:
- type: web
name: antigravity-backend
env: python
buildCommand: pip install -r backend/requirements.txt
startCommand: uvicorn backend.main:app --host 0.0.0.0 --port $PORT
envVars:
- key: MONGODB_URI
sync: false
- key: HF_TOKEN
sync: false
- key: JWT_SECRET
sync: false
- type: static
name: antigravity-frontend
buildCommand: ""
staticPublishPath: ./frontend
|