Skip to content

Instantly share code, notes, and snippets.

@berkorbay
Created November 20, 2023 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkorbay/a3f4ee615b66fafa62aa4d8d7d2cd272 to your computer and use it in GitHub Desktop.
Save berkorbay/a3f4ee615b66fafa62aa4d8d7d2cd272 to your computer and use it in GitHub Desktop.
Streamlit debug config for VS Code
{
// 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": "Streamlit: App",
"type": "python",
"request": "launch",
"module": "streamlit",
"cwd": "${workspaceFolder}/",
"args": [
"run",
"app.py"
]
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment