|
@@ -12,8 +12,8 @@ MANAGERS = ADMINS
|
|
|
DATABASES = {
|
|
|
'default': {
|
|
|
# Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
|
|
|
- 'ENGINE': 'django.db.backends.',
|
|
|
- 'NAME': '', # path to database file if using sqlite3.
|
|
|
+ 'ENGINE': 'django.db.backends.sqlite3',
|
|
|
+ 'NAME': 'test.db', # path to database file if using sqlite3.
|
|
|
'USER': '', # Not used with sqlite3.
|
|
|
'PASSWORD': '', # Not used with sqlite3.
|
|
|
'HOST': '', # Set to empty string for localhost.
|
|
@@ -117,7 +117,6 @@ INSTALLED_APPS = (
|
|
|
'django.contrib.sites',
|
|
|
'django.contrib.messages',
|
|
|
'django.contrib.staticfiles',
|
|
|
- 'tasks',
|
|
|
'demoapp',
|
|
|
# Uncomment the next line to enable the admin:
|
|
|
# 'django.contrib.admin',
|