1
0

launch.json 930 B

12345678910111213141516171819202122232425262728
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: Streamlit",
  9. "type": "python",
  10. "request": "launch",
  11. "module": "streamlit",
  12. "cwd": "${workspaceFolder}/backend",
  13. "args": ["run", "main.py"],
  14. "justMyCode": true
  15. },
  16. {
  17. "name": "Python: Debug Tests",
  18. "type": "python",
  19. "request": "launch",
  20. "program": "${file}",
  21. "purpose": ["debug-test"],
  22. "console": "integratedTerminal",
  23. "cwd": "${workspaceFolder}/backend",
  24. "env": {"PYTHONPATH": "${workspaceFolder}/backend"},
  25. "justMyCode": false,
  26. }
  27. ]
  28. }