Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

52 lines
1.7 KiB

{
// 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",
"args": ["init", "--config", "dev"],
"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"
},
{
"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"
}
]
}