mirror of
https://github.com/NohamR/BrunoServer.git
synced 2026-01-10 00:08:19 +00:00
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:
11
render.yaml
Normal file
11
render.yaml
Normal 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
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Flask==3.0.0
|
||||||
|
gunicorn==21.2.0
|
||||||
Reference in New Issue
Block a user