mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-05 04:30:16 +03:00
Moved urls & wsgi down a level to remove module from same level as manage.py. Fixes tests.
This commit is contained in:
parent
7a73edd752
commit
5b08878105
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user