fitbit-web-ui-app/render.yaml
2023-07-25 23:39:19 -04:00

14 lines
449 B
YAML

services:
# See https://render.com/docs/blueprint-spec for more info on render blueprints
- type: web
name: fitbit_api_web_ui
env: python
plan: free
# A requirements.txt file must exist
buildCommand: pip install -r requirements.txt
# A src/app.py file must exist and contain `server=app.server`
startCommand: gunicorn --chdir src app:server
envVars:
- key: PYTHON_VERSION
value: 3.10.0