Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Nov 15, 2022
1 parent e710949 commit 38afa9c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"version": "0.3.0",
"configurations": [
{
"command": "yarn redwood dev --apiDebugPort 18911",
"name": "Run Dev Server",
"request": "launch",
"type": "node-terminal"
},
{
"name": "Attach API debugger",
"port": 18911, // you can change this port, see https://redwoodjs.com/docs/project-configuration-dev-test-build#debugger-configuration
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "node",
"protocol": "inspector",
"stopOnEntry": false,
"localRoot": "${workspaceFolder}/generator/konfig-dash/node_modules/@redwoodjs/api-server/dist",
"remoteRoot": "${workspaceFolder}/generator/konfig-dash/node_modules/@redwoodjs/api-server/dist",
"sourceMaps": true,
"restart": true
},
{
"command": "yarn redwood test api",
"name": "Test api",
"request": "launch",
"type": "node-terminal"
},
{
"command": "yarn redwood test web",
"name": "Test web",
"request": "launch",
"type": "node-terminal"
}
]
}
2 changes: 1 addition & 1 deletion generator/konfig-cli
2 changes: 1 addition & 1 deletion generator/konfig-dash

0 comments on commit 38afa9c

Please sign in to comment.