mirror of
https://github.com/Cronocide/fitbit-web-ui-app.git
synced 2025-01-22 19:58:31 +00:00
14 lines
461 B
YAML
14 lines
461 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
|
||
|
|