This commit is contained in:
Mateusz Gruszczyński
2026-02-26 15:15:46 +01:00
parent 811e76797e
commit 13734e585b
7 changed files with 33 additions and 18 deletions

View File

@@ -1,2 +1,2 @@
#!/bin/sh
exec gunicorn -w 4 -b 0.0.0.0:5000 'app:create_app()'
exec gunicorn -c gunicorn.conf.py --no-control-socket -w 4 -b 0.0.0.0:5000 'app:create_app()'