mirror of https://github.com/grafana/grafana
Add documentation for setting up debugging in VSCode (#29987)
parent
2fe62af685
commit
befdfedfb6
@ -0,0 +1,21 @@ |
|||||||
|
{ |
||||||
|
// 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": "grafana-server", |
||||||
|
"type": "go", |
||||||
|
"request": "launch", |
||||||
|
"mode": "auto", |
||||||
|
"program": "${workspaceFolder}/pkg/cmd/grafana-server", |
||||||
|
"env": {}, |
||||||
|
"args": [ |
||||||
|
"--homepath=${workspaceFolder}", |
||||||
|
"--packaging=dev", |
||||||
|
"cfg:app_mode=development", |
||||||
|
] |
||||||
|
} |
||||||
|
] |
||||||
|
} |
Loading…
Reference in new issue