aboutsummaryrefslogtreecommitdiffstats
path: root/test_pgsql.py
blob: 28c017849dd1a69d0491e4842ffa5502e592ec83 (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
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