Spaces:
Runtime error
Runtime error
| # Render deployment blueprint | |
| # Push this repo to GitHub, then connect it in Render dashboard | |
| services: | |
| - type: web | |
| name: mozhii-platform | |
| runtime: python | |
| buildCommand: pip install -r requirements.txt && pip install gunicorn | |
| startCommand: gunicorn "app:create_app()" -c gunicorn_config.py | |
| envVars: | |
| - key: DEBUG | |
| value: "False" | |
| - key: SECRET_KEY | |
| generateValue: true | |
| - key: PYTHON_VERSION | |
| value: "3.11.0" | |
| disk: | |
| name: mozhii-data | |
| mountPath: /opt/render/project/src/data | |
| sizeGB: 1 | |