Skip to content

Commit

Permalink
Merge branch 'fix/namespace-to-ons-casing' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lindenmckenzie committed Mar 4, 2024
2 parents e87ee22 + db2ccaa commit be332dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.default
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BERLIN_API_HOST=0.0.0.0
BERLIN_API_PORT=28900

BERLIN_API_LOGGING_NAMESPACE=dp_nlp_berlin_api
BERLIN_API_LOGGING_NAMESPACE=dp-nlp-berlin-api
BERLIN_API_DATA_LOCATION=data/

# Required, auto-populated variables
Expand Down
4 changes: 2 additions & 2 deletions .env.local
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BERLIN_API_PORT = 28900
BERLIN_API_HOST = "0.0.0.0"
BERLIN_API_DATA_LOCATION = "data/"
BERLIN_API_LOGGING_NAMESPACE = "dp_nlp_berlin_api"
BERLIN_API_LOGGING_NAMESPACE = "dp-nlp-berlin-api"
BERLIN_API_GIT_COMMIT = "000000"
BERLIN_API_VERSION = "0.1.0"
BERLIN_API_VERSION = "0.1.0"
2 changes: 1 addition & 1 deletion app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

settings.HOST = settings.get("HOST", "0.0.0.0")
settings.PORT = settings.get("PORT", "28900")
settings.NAMESPACE = settings.get("LOGGING_NAMESPACE", "dp_nlp_berlin_api")
settings.NAMESPACE = settings.get("LOGGING_NAMESPACE", "dp-nlp-berlin-api")
settings.DATA_LOCATION = settings.get("DATA_LOCATION", "/data")
settings.BUILD_TIME = settings.get("BUILD_TIME", current_time)
settings.GIT_COMMIT = settings.get("GIT_COMMIT")
Expand Down

0 comments on commit be332dd

Please sign in to comment.