Initial Demo

This commit is contained in:
zin
2026-01-15 02:05:34 +00:00
parent 2acb29a598
commit 025cc061f7
10 changed files with 4012 additions and 1 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Streamlit Demo",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/demo_streamlit.py",
"console": "integratedTerminal",
"args": [
"--server.port", "80",
"--server.address", "0.0.0.0"
],
"python": "${workspaceFolder}/.venv/bin/python"
}
]
}

21
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"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": []
}
]
}