File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 3
3
" ms-python.python" ,
4
4
" ms-toolsai.jupyter" ,
5
5
" charliermarsh.ruff" ,
6
- " github.vscode-pull-request-github"
6
+ " github.vscode-pull-request-github" ,
7
+ " actboy168.tasks"
7
8
]
8
9
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " Build database" ,
6
+ "type" : " shell" ,
7
+ "command" : " uv run pipelines/run.py run build_database" ,
8
+ "group" : " none" ,
9
+ "icon" : {
10
+ "id" : " database"
11
+ },
12
+ "presentation" : {
13
+ "reveal" : " always" ,
14
+ "panel" : " new"
15
+ }
16
+ },
17
+ {
18
+ "label" : " Run Evidence" ,
19
+ "type" : " shell" ,
20
+ "command" : " if command -v npm > /dev/null 2>&1; then cd analytics/evidence && npm install && npm run sources && npm run dev -- --host 0.0.0.0; else echo 'NPM not installed'; fi" ,
21
+ "group" : " none" ,
22
+ "icon" : {
23
+ "id" : " run"
24
+ },
25
+ "problemMatcher" : null ,
26
+ "presentation" : {
27
+ "reveal" : " always" ,
28
+ "panel" : " new"
29
+ }
30
+ }
31
+ ]
32
+ }
You can’t perform that action at this time.
0 commit comments