diff --git a/Procfile b/Procfile index a7281445..68e40051 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn app.app.wsgi:application --log-file - --log-level debug \ No newline at end of file +web: gunicorn app.app.wsgi:application --log-file - \ No newline at end of file diff --git a/app/app/wsgi.py b/app/app/wsgi.py index 1ce905ce..8435af2f 100755 --- a/app/app/wsgi.py +++ b/app/app/wsgi.py @@ -1,6 +1,3 @@ -import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "app.settings.prod") - application = get_wsgi_application()