dev config

This commit is contained in:
josc146
2023-06-05 22:57:01 +08:00
parent 4cd445bf77
commit 17faa9c5b8
3 changed files with 66 additions and 5 deletions

19
.vscode/launch.json vendored
View File

@@ -10,9 +10,24 @@
"name": "Python",
"type": "python",
"request": "launch",
"program": "./backend-python/main.py",
"program": "${workspaceFolder}/backend-python/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"justMyCode": false
},
{
"name": "Golang",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/testwails.exe",
"console": "integratedTerminal",
"preLaunchTask": "build dev"
},
{
"name": "Frontend",
"type": "node-terminal",
"request": "launch",
"command": "wails dev -browser"
}
]
}