equal
deleted
inserted
replaced
7 # ('Your Name', 'your_email@domain.com'), |
7 # ('Your Name', 'your_email@domain.com'), |
8 ) |
8 ) |
9 |
9 |
10 MANAGERS = ADMINS |
10 MANAGERS = ADMINS |
11 |
11 |
12 DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
12 DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
13 DATABASE_NAME = '' # Or path to database file if using sqlite3. |
13 DATABASE_NAME = 'appDb' # Or path to database file if using sqlite3. |
14 DATABASE_USER = '' # Not used with sqlite3. |
14 DATABASE_USER = '' # Not used with sqlite3. |
15 DATABASE_PASSWORD = '' # Not used with sqlite3. |
15 DATABASE_PASSWORD = '' # Not used with sqlite3. |
16 DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. |
16 DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. |
17 DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. |
17 DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. |
18 |
18 |
74 INSTALLED_APPS = ( |
74 INSTALLED_APPS = ( |
75 'django.contrib.auth', |
75 'django.contrib.auth', |
76 'django.contrib.contenttypes', |
76 'django.contrib.contenttypes', |
77 'django.contrib.sessions', |
77 'django.contrib.sessions', |
78 'django.contrib.sites', |
78 'django.contrib.sites', |
|
79 'django.contrib.admin', |
|
80 'pytask.taskapp', |
79 ) |
81 ) |