Spaces:
Build error
Build error
Create .vscode/launch.json
Browse files- .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 |
+
}
|