Skip to content

Commit

Permalink
Update AllowedHosts Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-burwood committed Nov 5, 2024
1 parent c99309d commit 66d2443
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HomeDB/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = os.getenv("DEBUG", "False") == "True"

ALLOWED_HOSTS = ['*'] # os.getenv("ALLOWED_HOSTS", "").split(",") if os.getenv("ALLOWED_HOSTS") else []
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "").split(",") if os.getenv("ALLOWED_HOSTS") else []

# Application definition

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "HomeDB"
version = "1.0"
description = "HomeDB is a Database for the Home."
version = "1.0.01"
description = "HomeDB is a Database for the Home"
readme = "README.md"
authors = [
{ name = "Ben Burwood", email = "[email protected]" }
Expand Down

0 comments on commit 66d2443

Please sign in to comment.