added *.db to hgignore and made database path to pytask.db in settings.py
authornishanth
Thu, 04 Feb 2010 23:24:20 +0530
changeset 29 8baf12083a1e
parent 28 e137b605b888
child 30 055dc4c1db57
added *.db to hgignore and made database path to pytask.db in settings.py
.hgignore
settings.py
taskapp/__init__.pyc
taskapp/admin.pyc
taskapp/models.pyc
--- a/.hgignore	Thu Feb 04 23:19:15 2010 +0530
+++ b/.hgignore	Thu Feb 04 23:24:20 2010 +0530
@@ -1,6 +1,7 @@
 # use glob syntax.
 syntax: glob
 
+*.db
 *.pyc
 *.zip
 *~
--- a/settings.py	Thu Feb 04 23:19:15 2010 +0530
+++ b/settings.py	Thu Feb 04 23:24:20 2010 +0530
@@ -10,7 +10,7 @@
 MANAGERS = ADMINS
 
 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-DATABASE_NAME = '../../pytask.db'             # Or path to database file if using sqlite3.
+DATABASE_NAME = 'pytask.db'             # 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.
Binary file taskapp/__init__.pyc has changed
Binary file taskapp/admin.pyc has changed
Binary file taskapp/models.pyc has changed