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