Skip to content

Commit

Permalink
add file aware env
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Feb 3, 2025
1 parent 4c384dd commit 0a2e67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent.parent.parent
SRC_DIR = BASE_DIR / "src"
APPS_DIR = SRC_DIR / "apps"
env = environ.Env()
env = environ.FileAwareEnv()

READ_DOT_ENV_FILE = env.bool("DJANGO_READ_DOT_ENV_FILE", default=False)
if READ_DOT_ENV_FILE:
Expand Down

0 comments on commit 0a2e67f

Please sign in to comment.