initial commit. add flask dispatcher for apps in nested subdirs

This commit is contained in:
Connor Rhodes 2026-04-23 18:28:03 -05:00
commit dea4a1aec6
5 changed files with 259 additions and 0 deletions

5
justfile Normal file
View file

@ -0,0 +1,5 @@
run:
uv run gunicorn --bind 0.0.0.0:8080 "server:application"
dev:
FLASK_DEBUG=1 uv run python -c "import server; from werkzeug.serving import run_simple; run_simple('0.0.0.0', 8080, server.application, use_reloader=True, use_debugger=True)"