mirror of
https://github.com/kerberos-io/agent.git
synced 2026-08-23 15:08:32 +00:00
33 lines
975 B
JSON
33 lines
975 B
JSON
{
|
|
// 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 Golang",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/machinery/main.go",
|
|
"args": [
|
|
"-action",
|
|
"run",
|
|
"-port",
|
|
"8080"
|
|
],
|
|
"envFile": "${workspaceFolder}/machinery/.env",
|
|
"buildFlags": "--tags dynamic",
|
|
},
|
|
{
|
|
"name": "Launch React",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}/ui",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"start"
|
|
],
|
|
}
|
|
]
|
|
} |