launch.json 668 B

1234567891011121314151617181920
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "python",
  9. "type": "debugpy",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal",
  13. "cwd": "${fileDirname}",
  14. "env": {"PYTHONPATH":"${workspaceFolder};${env:PYTHONPATH}"},
  15. "envFile": "${workspaceFolder}/zhch/.env",
  16. // "args": ["--inputs", "sample_data/600916_中国黄金_2022年报_利润表", "--threshold", "0.2", "--output_dir", "sample_data/output"],
  17. "justMyCode": false
  18. }
  19. ]
  20. }