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

18 lines
477 B
JSON

{
"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"
}
]
}