-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathenv.json
More file actions
58 lines (58 loc) · 1.72 KB
/
env.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"development": {
"environment": "development",
"keycloak": {
"realm": "bookmarks",
"bearer-only": true,
"auth-server-url": "http://localhost:8480/auth",
"ssl-required": "external",
"checkLoginIframe": false,
"resource": "bookmarks-api"
},
"basicApiUrl": "http://localhost:3000/api"
},
"test": {
"environment": "test",
"keycloak": {
"realm": "bookmarks",
"bearer-only": true,
"auth-server-url": "http://localhost:8480/auth",
"ssl-required": "external",
"resource": "bookmarks-api"
},
"integration_tests": {
"keycloak_admin_api_base_url": "http://localhost:8480/auth/admin",
"client_id": "integration-tests-service-account",
"client_secret": "90f67674-58d1-4928-8a01-256905389464",
"token_endpoint": "http://localhost:8480/auth/realms/bookmarks/protocol/openid-connect/token",
"admin": {
"client_id": "admin-service-account",
"client_secret": "3824c48f-9ddb-49bd-85cf-7ebedd3ff768"
}
},
"basicApiUrl": "http://localhost:3000/api"
},
"development-docker": {
"environment": "development",
"keycloak": {
"realm": "bookmarks",
"bearer-only": true,
"auth-server-url": "http://keycloak:8080/auth",
"ssl-required": "external",
"resource": "bookmarks-api",
"checkLoginIframe": false
},
"basicApiUrl": "http://localhost:3000/api"
},
"production": {
"environment": "production",
"keycloak": {
"realm": "bookmarks",
"bearer-only": true,
"auth-server-url": "https://www.codever.dev/auth",
"ssl-required": "external",
"resource": "bookmarks-api"
},
"basicApiUrl": "https://www.codever.dev/api"
}
}