blob: e7f923205ee8f585ae12f18b7d3009030a619277 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | 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'
PROJECT_SLUG = "CI-instance"
USE_SPATIALITE_FOR_TESTS = False
SECRET_KEY = "not-so-secret-key"
 |