-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-requests.code-workspace
More file actions
48 lines (48 loc) · 1.56 KB
/
api-requests.code-workspace
File metadata and controls
48 lines (48 loc) · 1.56 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
{
"folders": [
{
"path": "./services/portal/requests",
"name": "Portal API Requests",
},
{
"path": "./services/shop/requests",
"name": "Shop API Requests",
},
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#ff6433",
"activityBar.background": "#ff6433",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#00ff3d",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#ff6433",
"statusBar.background": "#ff3d00",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#ff6433",
"statusBarItem.remoteBackground": "#ff3d00",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#ff3d00",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#ff3d0099",
"titleBar.inactiveForeground": "#e7e7e799",
"tab.activeBorderTop": "#00CA8E",
"tab.activeBackground": "#015c11"
},
"peacock.color": "#ff3d00",
"rest-client.environmentVariables": {
"$shared": {
"PORTAL_API_BASE_URL": "http://localhost:7001",
"SHOP_API_BASE_URL": "http://localhost:7000",
"OG_KC_BASE_URL": "http://localhost:8080",
},
"docker": {
"PORTAL_API_BASE_URL": "http://portal-api:7001",
"SHOP_API_BASE_URL": "http://shop-api:7000",
"OG_KC_BASE_URL": "http://keycloak:8080",
}
}
}
}