From 14acfbe73b6fea611c3ea28740fd69675c4bd4ae Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sat, 10 May 2025 22:03:46 +0200 Subject: [PATCH] Add: base importer app --- backend/apps/importer/__init__.py | 0 backend/apps/importer/apps.py | 6 ++++++ backend/apps/importer/tasks.py | 0 backend/core/settings.py | 1 + 4 files changed, 7 insertions(+) create mode 100644 backend/apps/importer/__init__.py create mode 100644 backend/apps/importer/apps.py create mode 100644 backend/apps/importer/tasks.py diff --git a/backend/apps/importer/__init__.py b/backend/apps/importer/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/apps/importer/apps.py b/backend/apps/importer/apps.py new file mode 100644 index 0000000..dd2630b --- /dev/null +++ b/backend/apps/importer/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AppsConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "apps.importer" diff --git a/backend/apps/importer/tasks.py b/backend/apps/importer/tasks.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/core/settings.py b/backend/core/settings.py index 4020650..df8d070 100644 --- a/backend/core/settings.py +++ b/backend/core/settings.py @@ -61,6 +61,7 @@ INSTALLED_APPS = [ "apps", "apps.archive", "apps.files", + "apps.importer", # App for handeling deletion to of model files "django_cleanup.apps.CleanupConfig", ]