Files
BrunoServer/render.yaml
√(noham)² 9016a57f1c Add deployment config and Python dependencies
Added render.yaml for service deployment configuration and requirements.txt specifying Flask and Gunicorn dependencies.
2025-12-13 16:36:07 +01:00

12 lines
264 B
YAML

services:
- type: web
name: bruno-license-server
env: python
buildCommand: pip install -r requirements.txt
startCommand: gunicorn server:app
envVars:
- key: FLASK_HOST
value: 0.0.0.0
- key: FLASK_PORT
value: 10000