Initial creation of notify-admin-frontend

This commit is contained in:
Rebecca Law
2015-11-18 16:19:40 +00:00
parent 34c397671b
commit 29012c78ee
9 changed files with 70 additions and 0 deletions

10
application.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello from notify-admin-frontend'
if __name__ == '__main__':
app.run(port=6012)