6 lines
165 B
Bash
Raw Permalink Normal View History

2025-07-14 13:50:26 +01:00
#!/bin/bash
2025-07-14 14:03:04 +01:00
if [ "$FLASK_ENV" = "production" ]; then
gunicorn --bind 0.0.0.0:3001 "ktvmanager.main:create_app()"
else
flask run --host=0.0.0.0 --port=3001
fi