aboutsummaryrefslogtreecommitdiffstats
path: root/test_pgsql.py
blob: 7a2aa9be4b42b7da1d8c7171f5dba87c9b4accd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from django.conf import global_settings

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        # Edit the below settings before use...
        'USER': '',
        'NAME': '',
        'HOST': '',
        'PASSWORD': '',
    }
}

INSTALLED_APPS = [
    'django.contrib.auth',
    'django.contrib.admin',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',

    'debug_toolbar',

    'tests',
]

MIDDLEWARE_CLASSES = global_settings.MIDDLEWARE_CLASSES + (
    'debug_toolbar.middleware.DebugToolbarMiddleware',
)

ROOT_URLCONF = ''

DEBUG = False

SITE_ID = 1