diff --git a/projtest/projtest/settings.py b/testproject/testproject/settings.py copy from projtest/projtest/settings.py copy to testproject/testproject/settings.py --- a/projtest/projtest/settings.py +++ b/testproject/testproject/settings.py @@ -19,7 +19,7 @@ # -# Django settings for projtest project. +# Django settings for testproject project. DEBUG = True TEMPLATE_DEBUG = DEBUG @@ -32,7 +32,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'projtest.db', # Or path to database file if using sqlite3. + 'NAME': 'testproject.db', # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. @@ -117,10 +117,10 @@ MIDDLEWARE_CLASSES = ( # 'django.middleware.clickjacking.XFrameOptionsMiddleware', ) -ROOT_URLCONF = 'projtest.urls' +ROOT_URLCONF = 'testproject.urls' # Python dotted path to the WSGI application used by Django's runserver. -WSGI_APPLICATION = 'projtest.wsgi.application' +WSGI_APPLICATION = 'testproject.wsgi.application' TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".