Updates galore. Improved folder structure, componentized, and notifications upon completion.

This commit is contained in:
Brian McGonagill 2026-03-17 14:01:35 -05:00
parent b48784e2ad
commit 7e0502ca40
33 changed files with 3565 additions and 728 deletions

4
start.sh Normal file → Executable file
View file

@ -50,11 +50,11 @@ if [[ "$MODE" == "prod" ]]; then
echo " Press Ctrl+C to stop."
echo "============================================================"
echo ""
PORT="$PORT" exec gunicorn -c gunicorn.conf.py wsgi:app
PORT="$PORT" exec gunicorn -c gunicorn.conf.py wsgi:application
else
echo " WARNING: Dev server only — use --prod or Docker for production."
echo " Starting Flask on http://localhost:${PORT}"
echo "============================================================"
echo ""
exec python3 app.py "$PORT"
exec python3 run.py "$PORT"
fi