feat: Gunicorn config and startup script

This commit is contained in:
2026-03-11 16:43:31 +01:00
parent 32ea4c3a1a
commit 73904cd99a
2 changed files with 9 additions and 0 deletions

4
start.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
set -e
export SECRET_KEY="${SECRET_KEY:-changeme-in-production}"
exec .venv/bin/gunicorn -c gunicorn.conf.py "app:create_app()"