+ add Web App (WIP)

This commit is contained in:
oleting
2021-01-13 22:30:45 +01:00
parent a47f2c06ac
commit cd128cbe5c
9 changed files with 210 additions and 7 deletions

16
run.py
View File

@@ -1,7 +1,15 @@
#!/usr/bin/env python
from gui.gui import Gui
import sys
# from gui.gui import Gui
# import sys
do_debug = "--debug" in sys.argv
# do_debug = "--debug" in sys.argv
Gui(theme='DarkGrey11', debug_mode=do_debug)
# Gui(theme='DarkGrey11', debug_mode=do_debug)
# Web App
from Web import create_app
app = create_app()
if __name__ == '__main__':
app.run(port=5000 ,debug=True)