1
0
Fork 0
forked from anton/matekasse
matekasse/main.py

20 lines
478 B
Python
Raw Normal View History

2023-07-28 21:29:33 +00:00
from venv import create
from Website import create_app
from flask_socketio import SocketIO
import atexit, sqlite3, sys, datetime, logging
2023-05-31 18:33:45 +00:00
2023-09-13 18:14:14 +00:00
app_data = create_app()
app = app_data["app"]
2023-07-28 21:29:33 +00:00
def exit_handler():
2023-05-31 18:33:45 +00:00
sys.exit("Program sucsesfully exited")
def main():
2023-07-28 21:29:33 +00:00
app_data = create_app()
app = app_data["app"]
socketio = app_data["socketio"]
atexit.register(exit_handler)
2023-09-06 19:26:39 +00:00
socketio.run(app, host='0.0.0.0', port=5000)
2023-07-28 21:29:33 +00:00
if __name__ == "__main__":
main()