Skip to content

Commit

Permalink
set dynamic ENVIRONMENT collection in base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentporte committed Dec 19, 2024
1 parent 9d8ee5b commit d80174c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SECRET_KEY = os.getenv("DJANGO_SECRET_KEY")

DEBUG = os.getenv("DJANGO_DEBUG", "False") == "True"
ENVIRONMENT = Environment.PROD
ENVIRONMENT = os.getenv("ENVIRONMENT", Environment.PROD)

PARKING_PAGE = os.getenv("PARKING_PAGE", "False") == "True"

Expand Down

0 comments on commit d80174c

Please sign in to comment.