Rewrite to Quart web-framework, refactor code.

This commit is contained in:
dsc 2022-03-12 14:46:31 +02:00
parent 6b300fd304
commit 67f4c34604
39 changed files with 656 additions and 980 deletions

5
run.py Normal file
View file

@ -0,0 +1,5 @@
from yellow.factory import create_app
import settings
app = create_app()
app.run(settings.HOST, port=settings.PORT, debug=settings.DEBUG, use_reloader=False)