-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflask_app.py
31 lines (22 loc) · 1.09 KB
/
flask_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from flask import Flask
from flask_migrate import Migrate
import routes
import models
# TODO:
# Parameters : On/off switch latex, enlarge image
# Add dashboard page: List of sessions on the top, screen split in two with last records on the left, clickable bar graph with num people/question
# For records page : add correct answer and check
# For sessions page : Add nb participants (https://docs.sqlalchemy.org/en/13/orm/tutorial.html#using-subqueries)
# Other views : Follow one participant in a session, see number of participants who have answer each questions as a bar graph
# All live with server push : https://stackoverflow.com/questions/12232304/how-to-implement-server-push-in-flask-framework
def create_app():
app = Flask(__name__, static_folder='dist', static_url_path='')
app.config["DEBUG"] = True
routes.init_app(app)
models.init_app(app)
return app
app = create_app()
migrate = Migrate(app, models.db)
if __name__ == "__main__":
print("======================== START ==========================")
app.run(host='0.0.0.0', port=50001, debug=True, threaded=True)