Point the wsgi to the same autogenerated settings file

This commit is contained in:
Roberto Rosario
2014-07-16 18:39:01 -04:00
parent 923176217d
commit 5cf8360534

View File

@@ -8,7 +8,7 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mayan.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mayan.settings.local")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()