project_charles / .vscode /launch.json
sohojoe's picture
first commit
4531ec5
raw
history blame
338 Bytes
{
"version": "0.1.0",
"configurations": [
{
"name": "debug streamlit",
"type": "python",
"request": "launch",
"program": "/opt/miniconda3/envs/streamlit/bin/streamlit",
"args": [
"run",
"app.py"
]
}
]
}