sphinx_django/settings.py~
changeset 2 f5e18f8ed036
parent 0 54f784230511
child 3 de4a2ed2f34b
equal deleted inserted replaced
1:5574cfc2b28d 2:f5e18f8ed036
     2 
     2 
     3 DEBUG = True
     3 DEBUG = True
     4 TEMPLATE_DEBUG = DEBUG
     4 TEMPLATE_DEBUG = DEBUG
     5 
     5 
     6 ADMINS = (
     6 ADMINS = (
     7     # ('Your Name', 'your_email@domain.com'),
     7     ('Amit Sethi', 'amit.pureenergy@gmail.com'),
     8 )
     8 )
     9 
     9 
    10 MANAGERS = ADMINS
    10 MANAGERS = ADMINS
    11 
    11 
    12 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    12 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    65 
    65 
    66 ROOT_URLCONF = 'sphinx_django.urls'
    66 ROOT_URLCONF = 'sphinx_django.urls'
    67 
    67 
    68 TEMPLATE_DIRS = (
    68 TEMPLATE_DIRS = (
    69     "/home/amit/review/sphinx_django/templates/"
    69     "/home/amit/review/sphinx_django/templates/"
    70 
    70     
    71     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    71     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    72     # Always use forward slashes, even on Windows.
    72     # Always use forward slashes, even on Windows.
    73     # Don't forget to use absolute paths, not relative paths.
    73     # Don't forget to use absolute paths, not relative paths.
    74 )
    74 )
    75 
    75 
    76 INSTALLED_APPS = (
    76 INSTALLED_APPS = (
       
    77     'django.contrib.admin',
    77     'django.contrib.auth',
    78     'django.contrib.auth',
    78     'django.contrib.contenttypes',
    79     'django.contrib.contenttypes',
    79     'django.contrib.sessions',
    80     'django.contrib.sessions',
    80     'django.contrib.sites',
    81     'django.contrib.sites',
       
    82     'sphinx_django.sphinxcomment',
    81 )
    83 )