summaryrefslogtreecommitdiff
path: root/ishtar/settings.py.example
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-08 23:47:28 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-24 17:39:02 +0100
commit407498312efdfe706df6d135c22b19345bf22576 (patch)
treee30210b9e6dca8b0edb80c5b64e2abf43afe02a8 /ishtar/settings.py.example
parentf86a4c422efbd8846fdf3823e10918298927d613 (diff)
downloadIshtar-407498312efdfe706df6d135c22b19345bf22576.tar.bz2
Ishtar-407498312efdfe706df6d135c22b19345bf22576.zip
Defining the model (refs #13)
Diffstat (limited to 'ishtar/settings.py.example')
-rw-r--r--ishtar/settings.py.example12
1 files changed, 6 insertions, 6 deletions
diff --git a/ishtar/settings.py.example b/ishtar/settings.py.example
index 259a9f82d..46d4f58b2 100644
--- a/ishtar/settings.py.example
+++ b/ishtar/settings.py.example
@@ -11,10 +11,10 @@ MANAGERS = ADMINS
DATABASES = {
'default': {
- 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
- 'NAME': '', # Or path to database file if using sqlite3.
- 'USER': '', # Not used with sqlite3.
- 'PASSWORD': '', # Not used with sqlite3.
+ 'ENGINE': 'django.contrib.gis.db.backends.postgis', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
+ 'NAME': 'ishtar', # Or path to database file if using sqlite3.
+ 'USER': 'user', # Not used with sqlite3.
+ 'PASSWORD': 'pass', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
@@ -91,8 +91,8 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
- # Uncomment the next line to enable the admin:
- # 'django.contrib.admin',
+ 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
+ 'furnitures'
)