fitbit-web-ui-app/render.yaml

14 lines
449 B
YAML
Raw Permalink 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
2023-07-26 03:37:02 +00:00
# A src/app.py file must exist and contain `server=app.server`
startCommand: gunicorn --chdir src app:server
2023-07-26 03:37:02 +00:00
envVars:
- key: PYTHON_VERSION
value: 3.10.0