From 96dd866e6fb2d948fc74c02bf7254450c982a629 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Fri, 20 Nov 2015 15:36:47 +0000 Subject: [PATCH] Add Procfile for heroku --- Procfile | 1 + application.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..6c11f71d6 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: python application.py \ No newline at end of file diff --git a/application.py b/application.py index 804162005..c9b13a239 100644 --- a/application.py +++ b/application.py @@ -5,7 +5,7 @@ app = Flask(__name__) @app.route('/') def index(): - return 'Hello from notify-admin-frontend' + return 'Hello from notifications-admin' if __name__ == '__main__': app.run(port=6012)