diff options
author | MR Lemon <matt@matthewlemon> | 2020-05-13 16:08:00 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-05-13 16:08:00 +0100 |
commit | e3b629fe001c75caca0f430ee5137305e4386af7 (patch) | |
tree | d4da5323b9c5281a4bfdb9ed83f7a51ffd6135fc /config/settings | |
parent | 84f2eccea7759dc694c83b770b0066a11cae7ecd (diff) |
refactored populate script into a new core app - better positioned for use in tests
Diffstat (limited to '')
-rw-r--r-- | config/settings/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/base.py b/config/settings/base.py index fd3f502..57028a8 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -89,7 +89,7 @@ LOCAL_APPS = [ "ctrack.caf.apps.CafConfig", "ctrack.register.apps.RegisterConfig", "ctrack.assessments.apps.AssessmentsConfig", - # Your stuff: custom apps go here + "ctrack.core.apps.CoreConfig", ] # https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS |