web/hdabo/settings.py
changeset 21 20d3375b6d28
parent 11 143ab88d17f8
child 24 8f84b9bbd22d
equal deleted inserted replaced
20:2f9a63a83002 21:20d3375b6d28
    10 MANAGERS = ADMINS
    10 MANAGERS = ADMINS
    11 
    11 
    12 DATABASES = {
    12 DATABASES = {
    13     'default': {
    13     'default': {
    14         'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    14         'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    15         'NAME': '',                      # Or path to database file if using sqlite3.
    15         'NAME': '', # Or path to database file if using sqlite3.
    16         'USER': '',                      # Not used with sqlite3.
    16         'USER': '', # Not used with sqlite3.
    17         'PASSWORD': '',                  # Not used with sqlite3.
    17         'PASSWORD': '', # Not used with sqlite3.
    18         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
    18         'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
    19         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    19         'PORT': '', # Set to empty string for default. Not used with sqlite3.
    20     }
    20     }
    21 }
    21 }
    22 
    22 
    23 # Local time zone for this installation. Choices can be found here:
    23 # Local time zone for this installation. Choices can be found here:
    24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
    24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
   112     'django.contrib.auth',
   112     'django.contrib.auth',
   113     'django.contrib.contenttypes',
   113     'django.contrib.contenttypes',
   114     'django.contrib.sessions',
   114     'django.contrib.sessions',
   115     'django.contrib.sites',
   115     'django.contrib.sites',
   116     'django.contrib.messages',
   116     'django.contrib.messages',
   117     'django.contrib.staticfiles',    
   117     'django.contrib.staticfiles',
   118     'django.contrib.admin',
   118     'django.contrib.admin',
   119     'django_extensions',
   119     'django_extensions',
   120     'haystack',
   120     'haystack',
   121     'hdabo',
   121     'hdabo',
   122 )
   122 )