Moved urls & wsgi down a level to remove module from same level as manage.py. Fixes tests.

This commit is contained in:
Skyler Dawson 2015-01-07 13:49:25 -05:00
parent 7a73edd752
commit 5b08878105
4 changed files with 2 additions and 2 deletions

View File

@ -203,10 +203,10 @@ class Common(Configuration):
# END MEDIA CONFIGURATION # END MEDIA CONFIGURATION
# URL Configuration # URL Configuration
ROOT_URLCONF = 'urls' ROOT_URLCONF = '{{ cookiecutter.repo_name }}.urls'
# See: https://docs.djangoproject.com/en/dev/ref/settings/#wsgi-application # See: https://docs.djangoproject.com/en/dev/ref/settings/#wsgi-application
WSGI_APPLICATION = 'wsgi.application' WSGI_APPLICATION = '{{ cookiecutter.repo_name }}.wsgi.application'
# End URL Configuration # End URL Configuration
# AUTHENTICATION CONFIGURATION # AUTHENTICATION CONFIGURATION