neko/.vscode/launch.json

21 lines
721 B
JSON
Raw Normal View History

2021-04-06 07:13:09 +12:00
{
// 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",
"type": "go",
2022-02-10 11:10:29 +13:00
"debugAdapter": "dlv-dap",
2021-04-06 07:13:09 +12:00
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/neko",
"output": "${workspaceFolder}/bin/debug/neko",
"cwd": "${workspaceFolder}/",
2022-02-10 11:10:29 +13:00
"args": ["serve", "-d", "-c", "dev/runtime/config.yml"],
"envFile": "${workspaceFolder}/.env.development"
2021-04-06 07:13:09 +12:00
}
]
}