-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
20 lines (16 loc) · 1.01 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
###################################################################
# Script Name : "APP.PY"
# Description : Main file for the mi-code-challenge. Launches a
# Flask webserver that shows a single button to
# trigger a simulation and visualise the results.
# Args :
# Author : Floris Remmen
# Email : [email protected]
# Date : "22 September 2020"
###################################################################
from webapp import create_app
# Create a Flask application
application = create_app()
if __name__ == "__main__":
# Run the flask application
application.run(host='0.0.0.0', debug=False)