Skip to content

Commit a25f7a3

Browse files
committed
naming for generic env variables
1 parent 839cafc commit a25f7a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web-integrations/prebid-integrations/client-side/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
export $(cat /tmp/env | xargs)
55

66
# Set default values if not provided
7-
export UID2_BASE_URL=${UID2_CSTG_BASE_URL:-"https://operator-integ.uidapi.com"}
7+
export BASE_URL=${UID2_CSTG_BASE_URL:-"https://operator-integ.uidapi.com"}
88
export SERVER_PUBLIC_KEY=${UID2_CSTG_SERVER_PUBLIC_KEY:-"UID2-X-I-MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEo+jcPlk8GWn3iG0R5Il2cbFQI9hR3TvHxaBUKHl5Vh+ugr+9uLMiXihka8To07ETFGghEifY96Hrpe5RnYko7Q=="}
99
export SUBSCRIPTION_ID=${UID2_CSTG_SUBSCRIPTION_ID:-"DMr7uHxqLU"}
1010

web-integrations/prebid-integrations/client-side/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
console.log('Initializing example.')
1212
// Environment variables with defaults
1313
window.uid2_example_settings = {
14-
UID2_BASE_URL: '${UID2_BASE_URL}',
14+
UID2_BASE_URL: '${BASE_URL}',
1515
SERVER_PUBLIC_KEY: '${SERVER_PUBLIC_KEY}',
1616
SUBSCRIPTION_ID: '${SUBSCRIPTION_ID}',
1717
};

0 commit comments

Comments
 (0)