blob: 3831a56fa5db69e60a0a54eb3fb18a5c214d7e1a (
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': 'ishtar_test',
        'USER': 'ishtar_test',
        'PASSWORD': 'ishtar_test',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    }
}
LOGFILE = '/tmp/ishtar.log'
PROJECT_SLUG = "CI-instance"
SECRET_KEY = "not-so-secret-key"
DISABLE_TASK_TIMEOUT = True
 |