Skip to content

Commit

Permalink
test debug
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantinRaikhert committed Sep 10, 2024
1 parent 286e254 commit f93c1cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/config/settings_for_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from core.config.settings_base import * # noqa

DEBUG = False
DEBUG = env('DEBUG')

# WARNING!!!
# You will probably need to make some minor changes to the `.env` file.
Expand Down
2 changes: 1 addition & 1 deletion src/core/config/settings_for_prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from core.config.settings_base import * # noqa

DEBUG = False
DEBUG = env('DEBUG')

DATABASES = {
'default': {
Expand Down

0 comments on commit f93c1cc

Please sign in to comment.