summaryrefslogtreecommitdiff
path: root/example_project/local_settings.py.setup
blob: 54dc99c4a6d43f1a3c039d8e63ab83ae38c4bd51 (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': '',
        'PORT': '5432',
    }
}

LOGFILE = '/tmp/ishtar.log'

PROJECT_SLUG = "test-instance"

SECRET_KEY = "not-so-secret-key"
DISABLE_TASK_TIMEOUT = True