forked from cyverse-de/portal2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathportal2.template.json
More file actions
90 lines (90 loc) · 2.22 KB
/
Copy pathportal2.template.json
File metadata and controls
90 lines (90 loc) · 2.22 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"db": {
"host": "localhost",
"port": 5432,
"name": "portal_db",
"user": "portal_user",
"password": "portal_password",
"logging": false,
"sessionTable": "session"
},
"server": {
"port": 3000,
"isDevelopment": false
},
"session": {
"secret": "your-session-secret-change-this",
"ttl": 86400,
"secureCookie": true
},
"keycloak": {
"realm": "your-realm",
"authUrl": "https://your-keycloak-server/auth",
"client": "your-client-id",
"secret": "your-client-secret"
},
"portalConductor": {
"url": "https://your-portal-conductor-url",
"retries": 5,
"auth": {
"username": "admin",
"password": "your-portal-conductor-password"
},
"ssl": {
"rejectUnauthorized": false
}
},
"terrain": {
"url": "https://your-terrain-url",
"user": "terrain-user",
"password": "terrain-password"
},
"ui": {
"baseUrl": "http://localhost:3000",
"wsBaseUrl": "ws://localhost:3001"
},
"profile": {
"updatePeriod": 365,
"warningPeriod": 30,
"updateText": "Please update your profile",
"warningText": "Your profile needs attention"
},
"features": {
"intercomEnabled": false
},
"sentry": {
"dsn": "https://your-sentry-dsn@sentry.io/project-id"
},
"intercom": {
"appId": "your-intercom-app-id",
"token": "your-intercom-token",
"companyId": "your-intercom-company-id",
"adminUserPortalBotId": "your-admin-user-portal-bot-id",
"adminTier1AtmosphereId": "your-admin-tier1-atmosphere-id",
"adminTier1ScienceTeamId": "your-admin-tier1-science-team-id",
"adminTier1DataWatchId": "your-admin-tier1-data-watch-id"
},
"bcc": {
"newAccountConfirmation": "admin@example.com",
"passwordChangeRequest": "admin@example.com",
"serviceAccessGranted": "admin@example.com",
"workshopEnrollmentRequest": "admin@example.com"
},
"external": {
"tourUrl": "https://learning.cyverse.org/mooc/",
"googleAnalyticsId": "your-google-analytics-id"
},
"security": {
"hmacKey": "your-hmac-key-change-this",
"uidNumberOffset": 2831
},
"smtp": {
"from": "support@example.com"
},
"support": {
"email": "support@example.com"
},
"honeypot": {
"divisor": 7
}
}