|
@@ -33,6 +33,9 @@ urlpatterns = [
|
|
|
path('admin/', admin.site.urls),
|
|
path('admin/', admin.site.urls),
|
|
|
|
|
|
|
|
path('health/', HealthCheckView.as_view(), name='healthcheck'),
|
|
path('health/', HealthCheckView.as_view(), name='healthcheck'),
|
|
|
|
|
+ path('error/', lambda _: 1/0),
|
|
|
|
|
+
|
|
|
|
|
+ # path('jet_api/', include('jet_django.urls')), Enable to use https://www.jetadmin.io/integrations/django
|
|
|
|
|
|
|
|
path('index.html', RedirectView.as_view(url='/')),
|
|
path('index.html', RedirectView.as_view(url='/')),
|
|
|
path('index.json', static.serve, {'document_root': settings.OUTPUT_DIR, 'path': 'index.json'}),
|
|
path('index.json', static.serve, {'document_root': settings.OUTPUT_DIR, 'path': 'index.json'}),
|