Launch with gunicorn

pull/1/head
Sean Redmond 2019-07-14 11:22:16 -04:00
parent 9807f8641b
commit 0ddca0d416
3 changed files with 10 additions and 0 deletions

1
Procfile Normal file
View File

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

View File

@ -1,6 +1,12 @@
certifi==2019.6.16
chardet==3.0.4
Click==7.0
Flask==1.1.1
gunicorn==19.9.0
idna==2.8
itsdangerous==1.1.0
Jinja2==2.10.1
MarkupSafe==1.1.1
requests==2.22.0
urllib3==1.25.3
Werkzeug==0.15.4

3
wsgi.py Normal file
View File

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