mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
21 lines
721 B
JSON
21 lines
721 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",
|
|
"type": "go",
|
|
"debugAdapter": "dlv-dap",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/cmd/neko",
|
|
"output": "${workspaceFolder}/bin/debug/neko",
|
|
"cwd": "${workspaceFolder}/",
|
|
"args": ["serve", "-d", "-c", "dev/runtime/config.yml"],
|
|
"envFile": "${workspaceFolder}/.env.development"
|
|
}
|
|
]
|
|
}
|