Add deployment config and Python dependencies

Added render.yaml for service deployment configuration and requirements.txt specifying Flask and Gunicorn dependencies.
This commit is contained in:
√(noham)²
2025-12-13 16:36:07 +01:00
parent 77b2337892
commit 9016a57f1c
2 changed files with 13 additions and 0 deletions

11
render.yaml Normal file
View File

@@ -0,0 +1,11 @@
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

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
Flask==3.0.0
gunicorn==21.2.0