-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample.euid
More file actions
61 lines (48 loc) · 2.8 KB
/
.env.sample.euid
File metadata and controls
61 lines (48 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ==============================================================================
# EUID Environment Configuration
# ==============================================================================
# This file provides default EUID integration settings.
# Edit the first section with your EUID credentials and keys.
# The values in the bottom section are EUID-specific constants and should NOT
# be changed unless you are configuring for a different EUID environment.
#
# ⚠️ EDIT THESE VALUES FIRST - Your EUID Credentials ⚠️
# ==============================================================================
# Server-Side & Client-Server Examples - Provided by your EUID integration representative
UID_API_KEY="your-api-key"
UID_CLIENT_SECRET="your-client-secret"
# Server-Side Examples - Any secure random string for session encryption
SESSION_KEY="your-session-key-here"
# Client-Side Token Generation (CSTG) - Provided by your EUID integration representative
UID_CSTG_SERVER_PUBLIC_KEY="your-euid-server-public-key"
UID_CSTG_SUBSCRIPTION_ID="your-euid-subscription-id"
# React Client-Side Examples - Provided by your EUID integration representative
# Note: These are the same values as the variables above, prefixed with REACT_APP_
# for use in React applications. Use your same EUID credentials from above.
REACT_APP_UID_CSTG_SERVER_PUBLIC_KEY="your-euid-server-public-key"
REACT_APP_UID_CSTG_SUBSCRIPTION_ID="your-euid-subscription-id"
# ==============================================================================
# EUID Constants (Do NOT change unless working with different EUID environment)
# ==============================================================================
# API Endpoints (Integration environment)
UID_SERVER_BASE_URL="https://integ.euid.eu" # ← For local development, use: http://host.docker.internal:8080
UID_CLIENT_BASE_URL="https://integ.euid.eu" # ← For local development, use: http://localhost:8080
# JavaScript SDK Configuration
UID_JS_SDK_URL="https://cdn.integ.euid.eu/euid-sdk-4.0.1.js"
UID_JS_SDK_NAME="__euid"
# Google Secure Signals Configuration
UID_SECURE_SIGNALS_SDK_URL="https://cdn.integ.euid.eu/euidSecureSignal.js"
UID_SECURE_SIGNALS_STORAGE_KEY="_GESPSK-euid.eu"
# Prebid Configuration
UID_STORAGE_KEY="__euid_advertising_token"
# UI Display Configuration
IDENTITY_NAME="EUID"
DOCS_BASE_URL="https://euid.eu/docs"
# React Constants (for React-based examples)
REACT_APP_UID_CLIENT_BASE_URL="https://integ.euid.eu" # ← For local development, use: http://localhost:8080
REACT_APP_UID_JS_SDK_URL="https://cdn.integ.euid.eu/euid-sdk-4.0.1.js"
REACT_APP_UID_JS_SDK_NAME="__euid"
REACT_APP_UID_SECURE_SIGNALS_SDK_URL="https://cdn.integ.euid.eu/euidSecureSignal.js"
REACT_APP_UID_SECURE_SIGNALS_STORAGE_KEY="_GESPSK-euid.eu"
REACT_APP_IDENTITY_NAME="EUID"
REACT_APP_DOCS_BASE_URL="https://euid.eu/docs"