-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettingslocal.py.test
More file actions
49 lines (46 loc) · 1.05 KB
/
settingslocal.py.test
File metadata and controls
49 lines (46 loc) · 1.05 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
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'db',
}
}
DEBUG = True
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
}
},
'handlers': {
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler'
},
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
}
},
'loggers': {
'': {
'level': 'DEBUG',
'handlers': ['console']
},
'django': {
'level': 'INFO',
'handlers': ['null'],
'propagate': True
},
'django.db.backends': {
'level': 'ERROR',
'handlers': ['console'],
'propagate': False,
}
}
}