Added a new read me (DEVELOPMENT.md) as starting point for new develope

Added a new VSC launch configuration to start the backend in the debugger
Update the build instruction in README.md (Issue #728)
This commit is contained in:
bastiansbits
2022-12-07 14:43:43 +01:00
parent 9c0a77cb6e
commit 575f7eed4e
3 changed files with 55 additions and 1 deletions

14
.vscode/launch.json vendored
View File

@@ -4,6 +4,20 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Dev: Debug Backend",
"request": "launch",
"runtimeArgs": [
"run-script",
"debug"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"cwd": "${workspaceFolder}/backend"
},
{
"type": "node",
"request": "attach",