pdf_explainer / .vscode /tasks.json
spagestic's picture
fix: update command in tasks.json to correct app.py path
ccca1e4
raw
history blame contribute delete
243 Bytes
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Activate venv and run app.py",
"command": "source .venv/Scripts/activate && python app.py",
"group": "build",
"problemMatcher": []
}
]
}