forked from CodeverDotDev/codever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.example.json
34 lines (34 loc) · 1.03 KB
/
env.example.json
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
{
"development": {
"environment": "development",
"keycloak": {
"realm": "bookmarks",
"bearer-only": true,
"auth-server-url": "http://localhost:keycloak-port/auth",
"ssl-required": "external",
"resource": "bookmarks-api"
},
"integration_tests": {
"client_id": "integration-tests-service-account",
"client_secret": "client secret for service account",
"token_endpoint": "http://localhost:keycloak-poart/auth/realms/bookmarks/protocol/openid-connect/token",
"test_user_id": "keycloak-user-id",
"admin": {
"client_id": "service account name",
"client_secret": "the client secret"
}
},
"basicApiUrl": "http://localhost:nodejs-port/api/"
},
"production": {
"environment": "production",
"keycloak": {
"realm": "realm-name",
"bearer-only": true,
"auth-server-url": "auth-server-url",
"ssl-required": "external",
"resource": "resource-name(client id)"
},
"basicApiUrl": "https://www.bookmarks.dev/api/"
}
}