18 lines
477 B
JSON
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"
|
|
}
|
|
]
|
|
}
|