From 0ddca0d4164ab466c8cec63cfcc4670c215dd761 Mon Sep 17 00:00:00 2001 From: Sean Redmond Date: Sun, 14 Jul 2019 11:22:16 -0400 Subject: [PATCH] Launch with gunicorn --- Procfile | 1 + requirements.txt | 6 ++++++ wsgi.py | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 Procfile create mode 100644 wsgi.py diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..fc272ab --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn wsgi:app \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 4fcaeb1..bb91964 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..136fd23 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,3 @@ +from cce_search import create_app + +app = create_app()