-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotenv.sample
More file actions
60 lines (44 loc) · 1.83 KB
/
Copy pathdotenv.sample
File metadata and controls
60 lines (44 loc) · 1.83 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
# Your tenant URL. You must set this.
OIDC_CI_BASE_URI=https://xxxxxxxxxx.verify.ibm.com
OIDC_ISSUER=https://xxxxxxxxxx.verify.ibm.com/oauth2
# API Client for client_credentials flow
# Give full permissions for auto-setup
API_CLIENT_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
API_SECRET=xxxxxxxx
# OIDC Relying Party configuration. Auto setup will create this application
# using OIDC_REDIRECT_URI specified here.
OIDC_REDIRECT_URI=http://localhost:3000/oauth/callback
# Auto-setup will complete these values for created application:
OIDC_CLIENT_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
OIDC_CLIENT_SECRET=xxxxxxxx
# Allow setup page access (at /setup)
ALLOW_DYNAMIC_SETUP=true
# Name of application in Verify to be used/created.
APP_NAME=TrustMeInsurance
# Name of theme to be used/created by application.
# Auto setup will look for THEME_NAME.zip in ci-ciam directory.
THEME_NAME=TrustMeInsurance
# Group name to use/create to identify users that have opted-in for MFA
MFAGROUP=MFAGroup
# URL where terms can be loaded.
EULA_URL=http://localhost:3000/terms.html
# Purpose IDs to use/create for DPCM
MARKETING_PURPOSE_ID=communications
PAPERLESS_PURPOSE_ID=paperless-billing
TERMS_PURPOSE_ID=terms
# Access type names to use/create in DPCM
READ_ACCESS_TYPE=read
DEFAULT_ACCESS_TYPE=default
# Attribute ID for e-mail attribute. Should not need to be changed.
EMAIL_ATTRIBUTE_ID=3
# BRAND_ID should be 'false'. Any other value will create users with an @BRAND_ID suffix
# BRAND_ID is used in open-account.js and some theme files.
BRAND_ID=false
#If true will request DPCM scopes in OIDC request
SEND_PRIVACY_SCOPES=false
# Application icon used in Verify admin UI
APP_ICON_PATH="./ci-theme/logo80x72.png"
# Application description
APP_DESCRIPTION="Retail insurances for cars, homes and much more"
# OIDC application URL
OIDC_APP_URL="http://localhost:3000/"