feat: vscode debuging settings

This commit is contained in:
devamin
2023-06-04 15:11:52 +02:00
parent 84b79b9541
commit ffa1304f2b

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

@@ -0,0 +1,19 @@
{
// 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": "Python: streamlit",
"type": "python",
"request": "launch",
"module": "streamlit",
"args": [
"run",
"main.py"
],
"justMyCode": true
}
]
}