Tracking PR for registration rewrite #5

Merged
Muirrum merged 32 commits from rewrite into master 2022-12-15 18:32:08 -05:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 576721345b - Show all commits

View file

@ -26,7 +26,7 @@ daemon:
@echo "--- STARTING UWSGI DAEMON ---"
@echo ""
@echo ""
source .venv/bin/activate && uwsgi --py-autoreload=5 --socket 0.0.0.0:8000 --protocol=http --wsgi-file netreg.py --enable-threads --master
source .venv/bin/activate && uwsgi --py-autoreload=5 --socket 0.0.0.0:8000 --protocol=http --wsgi-file goathacks.py --enable-threads --master
@echo ""
@echo ""
@echo "--- STARTING UWSGI DAEMON ---"

3
goathacks.py Normal file
View file

@ -0,0 +1,3 @@
from goathacks import create_app
application = create_app()