1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00
budibase/packages/cli/.vscode/launch.json

52 lines
1.7 KiB
JSON
Raw Normal View History

2019-10-12 05:14:23 +13: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": [
{
"type": "node",
"request": "launch",
"name": "init",
"program": "${workspaceFolder}\\bin\\budi",
2020-04-25 19:35:34 +12:00
"args": ["init", "-b", "remote"],
2019-10-12 05:14:23 +13:00
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "new",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["new", "my-app"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "run",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["run"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
2019-10-12 19:50:32 +13:00
},
{
"type": "node",
"request": "launch",
"name": "instance",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["instance", "my-app"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "budi",
"program": "${workspaceFolder}\\bin\\budi",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
2019-10-12 05:14:23 +13:00
}
]
}