Skip to content

Commit 3463481

Browse files
committed
gitignore contents of .vscode instead of folder
1 parent 9480e0e commit 3463481

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
.vscode
1+
.vscode/*
2+
!important .vscode/tasks.json
3+

Pidaq/.vscode/tasks.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "echoTest",
8+
"type": "shell",
9+
"command": "echo 'Hello taskrunner test good.'",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
}
14+
},
15+
{
16+
"label": "buildPiImage",
17+
"type": "shell",
18+
"command": "docker build -t pidaq:v1 docker/.",
19+
"group": {
20+
"kind": "build",
21+
"isDefault": true
22+
}
23+
},
24+
{
25+
"label": "compileRunPiHelloWorld",
26+
"type": "shell",
27+
"command": "docker run -it -v /c/Hyperloop/testing-software/Pidaq:/home/data --entrypoint helloTest.sh pidaq:v1",
28+
"group": {
29+
"kind": "build",
30+
"isDefault": true
31+
}
32+
}
33+
]
34+
}

0 commit comments

Comments
 (0)