mirror of
https://github.com/NohamR/BrunoServer.git
synced 2026-01-10 00:08:19 +00:00
Added render.yaml for service deployment configuration and requirements.txt specifying Flask and Gunicorn dependencies.
12 lines
264 B
YAML
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
|