pytask/settings.py
changeset 71 5eb99afe6350
parent 69 c6bca38c1cbf
child 88 8165274cafa1
equal deleted inserted replaced
70:dca28aad6760 71:5eb99afe6350
    10 MANAGERS = ADMINS
    10 MANAGERS = ADMINS
    11 
    11 
    12 DATABASES = {
    12 DATABASES = {
    13     'default': {
    13     'default': {
    14         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    14         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    15         'NAME': './pytask/pytask.db',                      # Or path to database file if using sqlite3.
    15         'NAME': './pytask/db.db',                      # 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     }
    89     'django.contrib.contenttypes',
    89     'django.contrib.contenttypes',
    90     'django.contrib.sessions',
    90     'django.contrib.sessions',
    91     'django.contrib.sites',
    91     'django.contrib.sites',
    92     'django.contrib.messages',
    92     'django.contrib.messages',
    93     'registration',
    93     'registration',
    94     'tagging',
    94     #'tagging',
    95     'pytask.profile',
    95     'pytask.profile',
    96     # Uncomment the next line to enable the admin:
    96     # Uncomment the next line to enable the admin:
    97     'django.contrib.admin',
    97     'django.contrib.admin',
    98     # Uncomment the next line to enable admin documentation:
    98     # Uncomment the next line to enable admin documentation:
    99     # 'django.contrib.admindocs',
    99     # 'django.contrib.admindocs',