-
Notifications
You must be signed in to change notification settings - Fork 125
/
launch.json
25 lines (25 loc) · 1020 Bytes
/
launch.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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Go API server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"cwd": "${workspaceFolder}",
"env": {
"HOST": "http://localhost",
"PORT": "3000",
"STATIC_DIR": "./web/build/",
"COOKIE_STORE_KEY": "NpEPi8pEjKVjLGJ6kYCS+VTCzi6BUuDzU0wrwXyf5uDPArtlofn2AG6aTMiPmN3C909rsEWMNqJqhIVPGP3Exg==",
"SESSION_STORE_KEY": "AbfYwmmt8UCwUuhd9qvfNA9UCuN1cVcKJN1ofbiky6xCyyBj20whe40rJa3Su0WOWLWcPpO1taqJdsEI/65+JA==",
"REACT_APP_WEBSOCKET_ENDPOINT": "ws://localhost:3000/query"
},
"args": []
}
]
}