/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.vscode/launch.json
19 строк
719 B
Bob Nisco
[chore] Add VSCode Launch file (#9497)
19 сен 2024, 19:48
Не верифицирован
19 сен 2024, 19:48
810d50b
Код
Авторство
О чём код?
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Debug Streamlit App", "type": "debugpy", "request": "launch", "module": "streamlit", "args": ["run", "${file}"] // allows to set breakpoints in installed packages, such as the Streamlit lib itself or custom component code etc. // "justMyCode": false, // allows to use a different installed version of streamlit in another venv folder, e.g. // "program": "~/Projects/streamlit/lib/venv/bin/pytest" } ] }