Created
December 27, 2025 17:20
-
-
Save andrewgilmartin/e679f13d9a46bc4212221eaa67b17137 to your computer and use it in GitHub Desktop.
VSCode launch.json configuration for debugging Streamlit application. Most of the details where found at https://discuss.streamlit.io/t/vs-code-debug/520
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "debug streamlit", | |
| "type": "debugpy", | |
| "request": "launch", | |
| "program": ".venv/bin/streamlit", | |
| "args": [ | |
| "run", | |
| "${file}" | |
| ], | |
| "console": "integratedTerminal" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment