forked from syphar/django-drip
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestsettings.py
More file actions
executable file
·56 lines (43 loc) · 1.22 KB
/
testsettings.py
File metadata and controls
executable file
·56 lines (43 loc) · 1.22 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
SECRET_KEY = 'dripdripdripdripdripdripdrip'
# MUST SPECIFY TO MAKE USE OF DJANGO DRIP
DRIP_FROM_EMAIL = ''
DEBUG = True
SECRET_KEY = 'whatever/you/want-goes-here'
SECRET_KEY="whatever"
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'sqlite.db',
},
}
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.sessions',
'django.contrib.contenttypes',
'django.contrib.staticfiles',
'drip',
# testing only
'credits',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
},
]
USE_TZ = True
TIME_ZONE = 'UTC'
AUTH_PROFILE_MODULE = 'credits.Profile'
ROOT_URLCONF = 'test_urls'
STATIC_URL = '/static/'
STATICFILES_DIRS = ()