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()