add local_settings template

This commit is contained in:
Sanj 2012-05-01 18:13:35 +05:30
parent ec4f3346ec
commit e9f69f009e

View File

@ -0,0 +1,16 @@
DEBUG = True
LOCAL_DEVELOPMENT = True
JSON_DEBUG = False
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'db_name',
'USER': 'db_username',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}