Fixed Heroku procfile

This commit is contained in:
Julian Knauer 2020-07-01 15:10:58 +02:00
parent 4df790afbb
commit cf087d9334
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
web: gunicorn wsgi:app
web: gunicorn app:app

View File

@ -8,3 +8,6 @@ def create_app():
app.register_blueprint(views.bp)
return app
app = create_app()

View File

@ -1,3 +0,0 @@
from app import create_app
app = create_app()