We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b089f commit 228d665Copy full SHA for 228d665
README.md
@@ -114,9 +114,15 @@ urlpatterns = [
114
...
115
]
116
117
-if "debug_web" in settings.LIGHTWEIGHT_QUEUE_BACKEND:
118
- from django_lightweight_queue import urls as dlq_urls
119
- urlpatterns += [path("", include(dlq_urls))]
+if settings.DEBUG:
+ urlpatterns += [
+ path(
120
+ "",
121
+ include(
122
+ "django_lightweight_queue.urls", namespace="django-lightweight-queue"
123
+ ),
124
+ )
125
+ ]
126
```
127
128
This backend may require an extra setting if your debug site is not on localhost:
0 commit comments