yt-gen-app/.vscode/launch.json
Ymnuk 568c3ff44d
All checks were successful
continuous-integration/drone/tag Build is passing
Fix GetModelName
2023-08-10 11:33:04 +03:00

56 lines
1.6 KiB
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 Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": []
},
{
"name": "Help",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"-h"
]
},
{
"name": "Generate",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"--metafile",
"example.yml",
"--outdir-backend",
"dist/backend",
"--outdir-frontend",
"dist/frontend"
]
},
{
"name": "zmap",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"--metafile",
"/home/ymnuk/projects/zmap/zmap.yml",
"--outdir-backend",
"../zmap/backend",
"--outdir-frontend",
"dist/frontend"
]
}
]
}