gpt-doc-mem / .vscode /launch.json
dfgnota's picture
chor: add vscode launch task
fa3acd0
raw
history blame contribute delete
No virus
529 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": "Streamlit app",
"type": "python",
"request": "launch",
"module": "streamlit",
"justMyCode": true,
"args": [
"run",
"app.py"
]
}
]
}