procfile fix

This commit is contained in:
Łukasz Jędyk 2022-06-09 21:30:11 +02:00
parent 96697e52aa
commit 83ff7d9144
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
web: gunicorn -b 0.0.0.0:$PORT ayct_backend:create_app() --timeout 120
web: gunicorn -b 0.0.0.0:$PORT ayct_backend:app --timeout 120

View File

@ -27,3 +27,5 @@ def create_app():
return "Hello world!"
return app
app = create_app()