Spaces:
Sleeping
Sleeping
File size: 305 Bytes
b72652e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | services:
- type: web
name: fairvalue-api
runtime: python
region: oregon
plan: free
buildCommand: pip install -r requirements.txt
startCommand: uvicorn api.main:app --host 0.0.0.0 --port $PORT
envVars:
- key: PYTHON_VERSION
value: 3.11.0
healthCheckPath: /
|