Spaces:
Running
Running
File size: 808 Bytes
2c59c0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | services:
# ββ Backend: FastAPI inference server βββββββββββββββββββββββββββββββββββββ
- type: web
name: cardioscreen-api
runtime: python
region: frankfurt
plan: free
buildCommand: pip install -r requirements.txt
startCommand: uvicorn api:app --host 0.0.0.0 --port $PORT
# ββ Frontend: Vite static build ββββββββββββββββββββββββββββββββββββββββββββ
- type: web
name: cardioscreen-ui
runtime: static
region: frankfurt
buildCommand: cd webapp && npm ci && npm run build
staticPublishPath: webapp/dist
routes:
- type: rewrite
source: /*
destination: /index.html
|