Merge branch 'feature/migrator' of https://github.com/paperless-ngx/paperless-ngx into feature/migrator

This commit is contained in:
shamoon
2026-01-23 21:33:27 -08:00
2 changed files with 7 additions and 1 deletions

View File

@@ -174,7 +174,11 @@ AUTHENTICATION_BACKENDS = [
] ]
STATIC_URL = "/static/" STATIC_URL = "/static/"
STATICFILES_DIRS = [BASE_DIR / ".." / "static", BASE_DIR / "static"] STATICFILES_DIRS = [
BASE_DIR / ".." / "static",
BASE_DIR / "static",
BASE_DIR / "documents" / "static",
]
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"

View File

@@ -11,6 +11,8 @@ urlpatterns = [
path("accounts/", include("allauth.urls")), path("accounts/", include("allauth.urls")),
path("migration/", views.migration_home, name="migration_home"), path("migration/", views.migration_home, name="migration_home"),
path("migration/transform/stream", views.transform_stream, name="transform_stream"), path("migration/transform/stream", views.transform_stream, name="transform_stream"),
# redirect root to migration home
path("", views.migration_home, name="migration_home"),
] ]
if settings.DEBUG: if settings.DEBUG: