add script that runs gunicorn production server

This commit is contained in:
Joeri Exelmans 2025-11-06 10:30:20 +01:00
parent 8359d6e521
commit 95b14ee41b
4 changed files with 68 additions and 1 deletions

View file

@ -10,10 +10,12 @@ dependencies = [
"parsimonious >=0.10.0, <0.11.0",
"flask>=2.2.5",
"flask-cors>=5.0.0",
"gunicorn>=23.0.0",
]
[project.scripts]
run_server = "mtl.run_server:run_server"
run_gunicorn = "mtl.run_gunicorn:run_gunicorn"
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0", "setuptools", "wheel"]