andreska commited on
Commit
a9e91fe
·
verified ·
1 Parent(s): 396cac3

Create .vscode/launch.json

Browse files
Files changed (1) hide show
  1. .vscode/launch.json +14 -0
.vscode/launch.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Streamlit",
6
+ "type": "debugpy",
7
+ "request": "launch",
8
+ "module": "streamlit",
9
+ "args": ["run", "app.py"],
10
+ "env": { "PYTHONPATH": "${workspaceFolder}" },
11
+ "console": "integratedTerminal"
12
+ }
13
+ ]
14
+ }