This commit is contained in:
Michał Gdula 2023-08-04 17:34:08 +00:00
parent 4c7bf9706f
commit d19a33501a
36 changed files with 808 additions and 1052 deletions

4
run.py
View file

@ -25,9 +25,9 @@ Configuration()
if DEBUG:
from onlylegs import create_app
from onlylegs.app import app
create_app().run(host=ADDRESS, port=PORT, debug=True, threaded=True)
app.run(host=ADDRESS, port=PORT, debug=True, threaded=True)
else:
from setup.runner import OnlyLegs # pylint: disable=C0412
import sys