diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-08-23 09:54:43 +0200 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-08-23 10:18:35 +0200 |
commit | 4b7cd5405dea9003f31af1aa9cd584d8ccf2141f (patch) | |
tree | 3ab06f13845946206260ffc3ad783882b99f9791 /development/.env | |
parent | 7348ffad6bb027b2e815b2081a9d9a827a84836e (diff) |
Consistently use the preferences and history names in the bff code base
- rename openapi clients (client-portal-prefs -> client-preferences, client-portal-history -> client-history, client-portal-keycloak -> client-keycloak)
- rename related spring configurations (portal-prefs -> preferences, portal-history -> history)
- rename related environment variables (PORTAL_PREFS_URL -> PREFERENCES_URL, PORTAL_HISTORY_URL -> HISTORY_URL)
Note that the changes to the configurations and variables affect external services using it and the bff chart
Issue-ID: PORTALNG-49
Change-Id: I434abdf130a5a81534c2387143b296122408d452
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'development/.env')
-rw-r--r-- | development/.env | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/development/.env b/development/.env index 9bb9dd3..f8e9c18 100644 --- a/development/.env +++ b/development/.env @@ -20,21 +20,21 @@ POSTGRES_VERSION=15rc1 MONGO_IMAGE=mongo MONGO_VERSION=latest -# portal-prefs -PORTAL_PREFS_IMAGE_NAME=portal-prefs -PORTAL_PREFS_IMAGE_TAG=0.1.0-master-faef0c0e +# preferences +PREFERENCES_IMAGE_NAME=preferences +PREFERENCES_IMAGE_TAG=0.1.0-master-faef0c0e PORTALPREFS_USERNAME:root PORTALPREFS_PASSWORD:password -PORTALPREFS_DATABASE:Portalprefs -PORTALPREFS_HOST:mongo-prefs +PORTALPREFS_DATABASE:Preferences +PORTALPREFS_HOST:mongo-preferences PORTALPREFS_PORT:27017 -# portal-history -PORTAL_HISTORY_IMAGE_NAME=portal-history +# history +PORTAL_HISTORY_IMAGE_NAME=history PORTAL_HISTORY_IMAGE_TAG=0.1.1-de369ace PORTALHISTORY_USERNAME:root PORTALHISTORY_PASSWORD:password -PORTALHISTORY_DATABASE:Portalhist +PORTALHISTORY_DATABASE:History PORTALHISTORY_HOST:mongo-history PORTALHISTORY_PORT:27017 |