forked from Tivix/django-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_base.py
58 lines (50 loc) · 1.28 KB
/
settings_base.py
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
57
58
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.humanize',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.staticfiles',
'django_cron',
]
SECRET_KEY = "wknfgl34qtnjo&Yk3jqfjtn2k3jtnk4wtnk"
CRON_CLASSES = [
'test_crons.TestSucessCronJob',
'test_crons.TestErrorCronJob',
'test_crons.Test5minsCronJob',
'test_crons.TestRunAtTimesCronJob',
'test_crons.Wait3secCronJob',
'django_cron.cron.FailedRunsNotificationCronJob'
]
MIDDLEWARE_CLASSES = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware'
]
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'null': {
'level': 'DEBUG',
'class': 'django.utils.log.NullHandler',
},
},
'loggers': {
'django_cron': {
'handlers': ['null'],
'level': 'INFO',
'propagate': True,
},
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': 'django_cache',
}
}
ROOT_URLCONF = 'test_urls'
SITE_ID = 1
STATIC_URL = '/static/'