Start with a proper setup

This commit is contained in:
2022-09-16 15:54:46 +02:00
parent 16e2f65c84
commit 7857c78bbe
30 changed files with 2344 additions and 685 deletions

View File

@@ -5,4 +5,8 @@ source ./venv/bin/activate
export FLASK_APP=packager
export FLASK_ENV=development
python3 -m flask run --reload
if (( $# == 0 )) ; then
python3 -m flask run --reload --host 0.0.0.0 --port 5000
else
python3 -m flask "${@}"
fi