diff options
author | Nishanth | 2010-01-24 15:43:19 +0530 |
---|---|---|
committer | Nishanth | 2010-01-24 15:43:19 +0530 |
commit | 10fb5c9e18a9f66c364bb186d403551a3845157b (patch) | |
tree | bb605a6f0670fa214b2b963743fa212bfd871fa2 /settings.py | |
parent | fe42dd79dc27fc0ff63e65105decfc5dc34e1a6a (diff) | |
download | pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.gz pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.bz2 pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.zip |
Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/settings.py b/settings.py index 669e6f5..c89cd47 100644 --- a/settings.py +++ b/settings.py @@ -9,8 +9,8 @@ ADMINS = ( MANAGERS = ADMINS -DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '' # Or path to database file if using sqlite3. +DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = 'appDb' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. @@ -76,4 +76,6 @@ INSTALLED_APPS = ( 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', + 'django.contrib.admin', + 'pytask.taskapp', ) |