From d54612c1ab7c1d86a2e0fff4a2a954f6c77a106e Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Mon, 20 Oct 2014 11:08:13 -0400 Subject: [PATCH] Working on Heroku integration. --- Procfile | 2 +- snipt.wsgi => wsgi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename snipt.wsgi => wsgi.py (82%) diff --git a/Procfile b/Procfile index 3e30175..b94b07e 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn snipt.wsgi --log-file - +web: gunicorn wsgi --log-file - diff --git a/snipt.wsgi b/wsgi.py similarity index 82% rename from snipt.wsgi rename to wsgi.py index ecf05ea..ba081cc 100644 --- a/snipt.wsgi +++ b/wsgi.py @@ -8,7 +8,7 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ """ import os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "snipt.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") from django.core.wsgi import get_wsgi_application application = get_wsgi_application()