Add Procfile for heroku

This commit is contained in:
Rebecca Law
2015-11-20 15:36:47 +00:00
parent a5d6cc4a5e
commit 96dd866e6f
2 changed files with 2 additions and 1 deletions

1
Procfile Normal file
View File

@@ -0,0 +1 @@
web: python application.py

View File

@@ -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)