-# Django settings for comicsporn project.
+# Django settings for django project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
- 'NAME': 'comicsporn', # Or path to database file if using sqlite3.
+ 'NAME': 'django', # Or path to database file if using sqlite3.
'USER': 'django', # Not used with sqlite3.
'PASSWORD': 'django', # Not used with sqlite3.
'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
'django.contrib.messages.middleware.MessageMiddleware',
)
-ROOT_URLCONF = 'comicsporn.urls'
+ROOT_URLCONF = 'django.urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
- # 'django.contrib.admin',
+ 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
- # 'django.contrib.admindocs',
+ 'django.contrib.admindocs',
)
# A sample logging configuration. The only tangible logging
urlpatterns = patterns('',
# Examples:
- # url(r'^$', 'comicsporn.views.home', name='home'),
- # url(r'^comicsporn/', include('comicsporn.foo.urls')),
+ # url(r'^$', 'django.views.home', name='home'),
+ # url(r'^django/', include('django.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation:
- # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
+ url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
- # url(r'^admin/', include(admin.site.urls)),
+ url(r'^admin/', include(admin.site.urls)),
)