We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe79968 commit a663f6fCopy full SHA for a663f6f
debugger/VSCode-Python.md
@@ -16,16 +16,13 @@ ptvsd.wait_for_attach()
16
4. 把整個資料夾拖進 VSCode, 選定 Main function 後 ( 如 app.py ), ctrl+shift+D > 新增 launch.json
17
```json
18
{
19
- // Use IntelliSense to learn about possible attributes.
20
- // Hover to view descriptions of existing attributes.
21
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
22
"version": "0.2.0",
23
"configurations": [
24
25
"name": "Python: Remote Attach",
26
"type": "python",
27
"request": "attach",
28
- "port": <remote-port>,
+ "port": 5678,
29
"host": "<remote-host>",
30
"pathMappings": [{
31
"localRoot": "${workspaceFolder}",
0 commit comments