Created
July 26, 2023 08:36
-
-
Save gustavz/e875cf951ee6a1e935c186c248fdc2d7 to your computer and use it in GitHub Desktop.
Revisions
-
Gustav von Zitzewitz created this gist
Jul 26, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ { "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 } ] }