12345678910111213141516171819202122232425262728 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Python: Streamlit",
- "type": "python",
- "request": "launch",
- "module": "streamlit",
- "cwd": "${workspaceFolder}/backend",
- "args": ["run", "main.py"],
- "justMyCode": true
- },
- {
- "name": "Python: Debug Tests",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "purpose": ["debug-test"],
- "console": "integratedTerminal",
- "cwd": "${workspaceFolder}/backend",
- "env": {"PYTHONPATH": "${workspaceFolder}/backend"},
- "justMyCode": false,
- }
- ]
- }
|