Skip to content

Commit

Permalink
splitting dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yokwejuste committed Jan 22, 2025
1 parent c6cdb16 commit b7fdcd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/visuleo_port/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
SECRET_KEY = os.environ.get("SECRET_KEY")

# Set DEBUG mode from environment variable
DEBUG = os.environ.get("DEBUG", "True").lower() in ["true", "1"]
DEBUG = os.environ.get("DEBUG", "False").lower() in ["true", "1"]


ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "").replace(" ", "").split(",")
Expand Down

0 comments on commit b7fdcd6

Please sign in to comment.