Skip to content

Instantly share code, notes, and snippets.

@andrewgilmartin
Created December 27, 2025 17:20
Show Gist options
  • Select an option

  • Save andrewgilmartin/e679f13d9a46bc4212221eaa67b17137 to your computer and use it in GitHub Desktop.

Select an option

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
{
"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