launch.json 1005 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "ERNIE_Cli Chat",
  9. "type": "debugpy",
  10. "request": "launch",
  11. "program": "erniecli.py",
  12. "args": ["command","看看现在用哪些docker容器在运行"],
  13. "console": "integratedTerminal"
  14. },
  15. {
  16. "name": "ERNIE_Cli Version",
  17. "type": "debugpy",
  18. "request": "launch",
  19. "program": "erniecli.py",
  20. "args": ["version"],
  21. "console": "integratedTerminal"
  22. },
  23. {
  24. "name": "ERNIE_Cli config",
  25. "type": "debugpy",
  26. "request": "launch",
  27. "program": "erniecli.py",
  28. "args": ["config"],
  29. "console": "integratedTerminal"
  30. }
  31. ]
  32. }