Skip to content

Commit

Permalink
Add environmental_justice to config/settings
Browse files Browse the repository at this point in the history
  • Loading branch information
code-geek committed Feb 2, 2024
1 parent 657b808 commit b11fb41
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Base settings to build other settings files upon.
"""

from pathlib import Path

import environ
Expand Down Expand Up @@ -90,7 +91,12 @@
"http://localhost:4200",
]

LOCAL_APPS = ["sde_indexing_helper.users", "sde_collections", "feedback"]
LOCAL_APPS = [
"environmental_justice",
"sde_indexing_helper.users",
"sde_collections",
"feedback",
]
# https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS

Expand Down

0 comments on commit b11fb41

Please sign in to comment.