Created
July 26, 2023 08:36
-
-
Save gustavz/e875cf951ee6a1e935c186c248fdc2d7 to your computer and use it in GitHub Desktop.
VS Code debug config for streamlit apps
This file contains 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": "Python: Streamlit", | |
"type": "python", | |
"request": "launch", | |
"module": "streamlit", | |
"env": { | |
// any .env variables you may have | |
"STREAMLIT_APP": "${file}", | |
"STREAMLIT_ENV": "development", | |
}, | |
"args": [ | |
"run", | |
"${file}" | |
], | |
"jinja": true, | |
"justMyCode": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment