delted stuff
This commit is contained in:
parent
5179ec792c
commit
66babf1b2c
1 changed files with 0 additions and 20 deletions
20
main.py
20
main.py
|
@ -1,20 +0,0 @@
|
||||||
from venv import create
|
|
||||||
from Website import create_app
|
|
||||||
from flask_socketio import SocketIO
|
|
||||||
import atexit, sqlite3, sys, datetime, logging
|
|
||||||
|
|
||||||
app_data = create_app()
|
|
||||||
app = app_data["app"]
|
|
||||||
|
|
||||||
def exit_handler():
|
|
||||||
sys.exit("Program sucsesfully exited")
|
|
||||||
|
|
||||||
def main():
|
|
||||||
app_data = create_app()
|
|
||||||
app = app_data["app"]
|
|
||||||
socketio = app_data["socketio"]
|
|
||||||
atexit.register(exit_handler)
|
|
||||||
socketio.run(app, host='0.0.0.0', port=5000)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
Loading…
Reference in a new issue