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