Skip to content

Commit

Permalink
fix: add service name default
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Sep 19, 2023
1 parent 51fd3eb commit 3f55db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeforlife/settings/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os

# The name of the current service.
SERVICE_NAME = os.environ["SERVICE_NAME"] # *required
SERVICE_NAME = os.getenv("SERVICE_NAME", "REPLACE_ME")

# If the current service the root service. This will only be true for portal.
SERVICE_IS_ROOT = bool(int(os.getenv("SERVICE_IS_ROOT", "0")))
Expand Down

0 comments on commit 3f55db0

Please sign in to comment.