launch.json 514 B

12345678910111213141516171819202122
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Python: Django",
  6. "type": "python",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/manage.py",
  9. "args": [
  10. "runserver",
  11. "0.0.0.0:8008", // 指定IP和端口[1,3](@ref)
  12. "--noreload" // 禁用自动重载(调试必需)
  13. ],
  14. "django": true,
  15. "pythonPath": "${workspaceFolder}/.venv/Scripts/python.exe",
  16. "env": {
  17. "PYTHONPATH": "${workspaceFolder}"
  18. }
  19. }
  20. ]
  21. }