summaryrefslogtreecommitdiff
path: root/commonnet/local_settings.py.sample
diff options
context:
space:
mode:
Diffstat (limited to 'commonnet/local_settings.py.sample')
-rw-r--r--commonnet/local_settings.py.sample12
1 files changed, 12 insertions, 0 deletions
diff --git a/commonnet/local_settings.py.sample b/commonnet/local_settings.py.sample
index 0cba3f5..8c59516 100644
--- a/commonnet/local_settings.py.sample
+++ b/commonnet/local_settings.py.sample
@@ -4,3 +4,15 @@ RESPONSIBLE_EMAIL = None
DEV = True
EXTRA_APPS = []
+
+# you probably have at least to set a password for db connection
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.contrib.gis.db.backends.postgis',
+ 'NAME': 'commonnet',
+ 'USER': 'commonnet',
+ 'PASSWORD': '',
+ 'HOST': '127.0.0.1',
+ 'PORT': '5432',
+ }
+}