diff --git a/ljg/core/admin.py b/ljg/core/admin.py deleted file mode 100644 index 8c38f3f..0000000 --- a/ljg/core/admin.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.contrib import admin - -# Register your models here. diff --git a/ljg/core/apps.py b/ljg/core/apps.py deleted file mode 100644 index d401aa2..0000000 --- a/ljg/core/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class CoreConfig(AppConfig): - default_auto_field = "django.db.models.BigAutoField" - name = "ljg.core" diff --git a/ljg/core/tests.py b/ljg/core/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/ljg/core/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/ljg/redirect/admin.py b/ljg/redirect/admin.py deleted file mode 100644 index 8c38f3f..0000000 --- a/ljg/redirect/admin.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.contrib import admin - -# Register your models here. diff --git a/ljg/redirect/apps.py b/ljg/redirect/apps.py deleted file mode 100644 index 481dc61..0000000 --- a/ljg/redirect/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class RedirectConfig(AppConfig): - default_auto_field = "django.db.models.BigAutoField" - name = "ljg.redirect" diff --git a/ljg/redirect/tests.py b/ljg/redirect/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/ljg/redirect/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/ljg/settings.py b/ljg/settings.py index 4c4f6dc..3ad8696 100644 --- a/ljg/settings.py +++ b/ljg/settings.py @@ -43,9 +43,9 @@ INSTALLED_APPS = [ "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", - "ljg.core.apps.CoreConfig", - "ljg.redirect.apps.RedirectConfig", "mozilla_django_oidc", + "ljg.core", + "ljg.redirect", ] MIDDLEWARE = [ @@ -127,11 +127,13 @@ USE_TZ = True STATIC_ROOT = BASE_DIR / "static" STATIC_URL = "static/" + # Default primary key field type # https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" + APP_TITLE = env.str("APP_TITLE", "ljg.sh") AUTHENTICATION_BACKENDS = (