Files
Thesis/.vscode/tasks.json
2026-01-15 02:05:34 +00:00

22 lines
559 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Streamlit Demo",
"type": "shell",
"command": "streamlit run src/demo_streamlit.py --server.port 80 --server.address 0.0.0.0",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
}
]
}