spagestic commited on
Commit
94d063a
·
1 Parent(s): fba7e74

feat: Add VSCode task to activate virtual environment and run app.py

Browse files
Files changed (1) hide show
  1. .vscode/tasks.json +12 -0
.vscode/tasks.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "shell",
6
+ "label": "Activate venv and run app.py",
7
+ "command": "source .venv/Scripts/activate && python src/app.py",
8
+ "group": "build",
9
+ "problemMatcher": []
10
+ }
11
+ ]
12
+ }