fitbit-web-ui-app/render.yaml

14 lines
461 B
YAML
Raw Normal View History

2023-07-26 03:37:02 +00:00
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