Skip to content

Commit

Permalink
fix: env var keys
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Sep 19, 2023
1 parent 99c70bb commit 22692a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codeforlife/settings/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
SERVICE_IS_ROOT = bool(int(os.getenv("SERVICE_IS_ROOT", "0")))

# The protocol, domain and port of the current service.
SERVICE_PROTOCOL = os.getenv("SITE_PROTOCOL", "http")
SERVICE_DOMAIN = os.getenv("SITE_DOMAIN", "localhost")
SERVICE_PORT = int(os.getenv("SITE_PORT", "8000"))
SERVICE_PROTOCOL = os.getenv("SERVICE_PROTOCOL", "http")
SERVICE_DOMAIN = os.getenv("SERVICE_DOMAIN", "localhost")
SERVICE_PORT = int(os.getenv("SERVICE_PORT", "8000"))

# The base url of the current service.
# The root service does not need its name included in the base url.
Expand Down

0 comments on commit 22692a6

Please sign in to comment.