123456789101112131415161718192021222324252627 |
- {
-
-
-
- "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",
- "justMyCode": false,
- }
- ]
- }
|