docker env vars, selenium docker simplified, favicon, settings clean

This commit is contained in:
Luciano Gervasoni
2025-04-10 10:54:57 +02:00
parent 842f3175df
commit 0cd84496cf
12 changed files with 177 additions and 103 deletions

View File

@@ -3,12 +3,10 @@ from django.conf import settings
from django.urls import reverse
EXEMPT_URLS = [
# reverse('login'), # or the name of your login view
reverse('admin:login'),
reverse('admin:index'),
# reverse('logout'), # optional
'/admin/', # allow full access to admin
settings.STATIC_URL, # allow static files
'/admin/', # Allow full access to admin
settings.STATIC_URL, # Allow static files
# path('scheduler/', include('scheduler.urls')),
]