Spaces:
Sleeping
Sleeping
Commit
·
7aa852a
1
Parent(s):
f4b76e2
Create debug_ex
Browse files
debug_ex
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
|
3 |
+
// Streamlit
|
4 |
+
|
5 |
+
"version": "0.2.0",
|
6 |
+
|
7 |
+
"configurations": [
|
8 |
+
|
9 |
+
{
|
10 |
+
|
11 |
+
"name": "debug streamlit in VSCode",
|
12 |
+
|
13 |
+
"type": "python",
|
14 |
+
|
15 |
+
"request": "launch",
|
16 |
+
|
17 |
+
"program": "c:\\Users\\awacke1\\AppData\\Local\\Programs\\Python\\Python310\\Scripts\\streamlit.exe",
|
18 |
+
|
19 |
+
"args": ["run","app.py"],
|
20 |
+
|
21 |
+
//"args": ["run","api.py"],
|
22 |
+
|
23 |
+
"console": "externalTerminal",
|
24 |
+
|
25 |
+
"justMyCode": true
|
26 |
+
|
27 |
+
}
|
28 |
+
|
29 |
+
]
|
30 |
+
|
31 |
+
}
|