blob: 6c7e5fbbad5dc4aa52ae11da008602030982f0d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'ishtar',
'USER': 'ishtar',
'PASSWORD': 'ishtar',
'HOST': 'mdillon-postgis',
'PORT': '5432',
}
}
LOGFILE = '/tmp/ishtar.log'
|