From 8a30068457b56fa623191e6c2676c92ec0b72bb5 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 10 Aug 2020 06:06:20 -0500 Subject: [PATCH] add Heroku Procfile --- Procfile | 1 + wsgi.py | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 Procfile create mode 100644 wsgi.py diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..d06acd1 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn wsgi:app diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..e9d24fe --- /dev/null +++ b/wsgi.py @@ -0,0 +1,3 @@ +from server.create_app import create_app + +app = create_app()