Fin_dashboard / .vscode /launch.json
Aryaman02's picture
Upload 9 files
d8db74b
raw
history blame contribute delete
No virus
581 Bytes
{
// 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: Current File",
"type": "python",
"request": "launch",
"module": "streamlit",
"args": [
"run",
"app.py"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}