blob: 6941109cf2b8cbb0fd4f15d7d0d4fc963f0114a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# This module is only used to run the unit tests.
#
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
KITTYSTORE_URL = 'sqlite:'
KITTYSTORE_DEBUG=False
USE_MOCKUPS = False
|