File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
manage_breast_screening/config Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ def list_env(key):
7575 "django.contrib.staticfiles" ,
7676 "django_extensions" ,
7777 "django_linear_migrations" ,
78+ "django_tasks" ,
79+ "django_tasks.backends.database" ,
7880 "manage_breast_screening.core" ,
7981 "manage_breast_screening.auth" ,
8082 "manage_breast_screening.users" ,
@@ -233,6 +235,15 @@ def list_env(key):
233235 "dicom" : dicom_storage_options ,
234236}
235237
238+ TASKS = {
239+ "default" : {
240+ "BACKEND" : "django.tasks.backends.immediate.ImmediateBackend" ,
241+ },
242+ "database" : {
243+ "BACKEND" : "django_tasks.backends.database.DatabaseBackend" ,
244+ },
245+ }
246+
236247# Password validation
237248# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators
238249
You can’t perform that action at this time.
0 commit comments