summaryrefslogtreecommitdiff
path: root/ishtar/settings.py.example
diff options
context:
space:
mode:
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'
)