summaryrefslogtreecommitdiff
blob: 1bfd83769f99220164c0936ce132629b898cf02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
The web application built on Flask is contained within this file.
When run as a script, the Flask development server is started.
"""

from flask import Flask
app = Flask(__name__)

@app.route('/')
def index():
	pass

if __name__ == '__main__':
	app.run(host='::1', debug=True)