| 1234567891011121314151617181920212223 | {  "version": "0.2.0",  "configurations": [        {      "name": "Python: Django",      "type": "python",      "request": "launch",      "program": "${workspaceFolder}/manage.py",      "args": [        "runserver",        "0.0.0.0:8008", // 指定IP和端口[1,3](@ref)        "--noreload" // 禁用自动重载(调试必需)      ],      "django": true,      "pythonPath": "${workspaceFolder}/.venv/Scripts/python.exe",      "env": {        "PYTHONPATH": "${workspaceFolder}"      }    }  ]}
 |