From 10fb5c9e18a9f66c364bb186d403551a3845157b Mon Sep 17 00:00:00 2001 From: Nishanth Date: Sun, 24 Jan 2010 15:43:19 +0530 Subject: Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface. --- settings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'settings.py') 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', ) -- cgit