initial commit. add flask dispatcher for apps in nested subdirs
This commit is contained in:
commit
dea4a1aec6
5 changed files with 259 additions and 0 deletions
5
justfile
Normal file
5
justfile
Normal 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)"
|
||||
Loading…
Add table
Add a link
Reference in a new issue