From 3836f9b23b38c3ae727963336775d4edfac9fb6e Mon Sep 17 00:00:00 2001 From: Eduard Stepanov Date: Wed, 14 May 2025 10:14:11 +0300 Subject: [PATCH] Initializing third party apps before project apps --- {{ cookiecutter.name }}/src/app/conf/installed_apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.name }}/src/app/conf/installed_apps.py b/{{ cookiecutter.name }}/src/app/conf/installed_apps.py index 4785a4ee..42d794c1 100644 --- a/{{ cookiecutter.name }}/src/app/conf/installed_apps.py +++ b/{{ cookiecutter.name }}/src/app/conf/installed_apps.py @@ -22,4 +22,4 @@ "django.contrib.staticfiles", ] -INSTALLED_APPS = APPS + THIRD_PARTY_APPS +INSTALLED_APPS = THIRD_PARTY_APPS + APPS