blob: 913f10feab610d66f0fc463972ac5a0b1d05144d (
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': 'mdillon-postgis',
'PORT': '5432',
}
}
LOGFILE = '/tmp/ishtar.log'
PROJECT_SLUG = "CI-instance"
USE_SPATIALITE_FOR_TESTS = False
SECRET_KEY = "not-so-secret-key"
|