Skip to content
Snippets Groups Projects
Commit c43ebdc0 authored by Mitchell Moore's avatar Mitchell Moore
Browse files

get into runnable state

parent 97064aa4
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,14 @@
import os
from app import create_app
from flask_socketio import SocketIO
config_name = os.getenv('FLASK_CONFIG')
app = create_app(config_name)
app.secret_key = 'randomString'
socketio = SocketIO(app)
if __name__ == '__main__':
app.run()
# app.run()
socketio.run(app)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment