Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c7c382c

Browse files
committed
Merge branch 'reviseTasks' into mainline
2 parents e9f4db4 + 7c7b5ea commit c7c382c

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,44 @@
1010
"group": {
1111
"kind": "build",
1212
"isDefault": true
13-
}
13+
},
14+
"problemMatcher": []
1415
},
1516
{
1617
"label": "Run Server",
1718
"type": "shell",
18-
"command": "source $(dirname ${config:python.pythonPath})/activate && make devserver"
19+
"command": "source $(dirname ${config:python.pythonPath})/activate && make devserver",
20+
"problemMatcher": []
1921
},
2022
{
2123
"label": "Stop Dev server",
2224
"type": "shell",
23-
"command": "source $(dirname ${config:python.pythonPath})/activate && make stopserver"
25+
"command": "source $(dirname ${config:python.pythonPath})/activate && make stopserver",
26+
"problemMatcher": []
2427
},
2528
{
2629
"label": "Open Site in Browser",
2730
"type": "shell",
28-
"command": "open https://www.codependentcodr.com"
31+
"command": "open https://www.codependentcodr.com",
32+
"problemMatcher": []
2933
},
3034
{
3135
"label": "Open Site in Browser (via S3 URL)",
3236
"type": "shell",
33-
"command": "open http://www.codependentcodr.com.s3-website.ca-central-1.amazonaws.com/index.html"
37+
"command": "open http://www.codependentcodr.com.s3-website.ca-central-1.amazonaws.com/index.html",
38+
"problemMatcher": []
3439
},
3540
{
3641
"label": "Open Site in Browser (via CF URL)",
3742
"type": "shell",
38-
"command": "open https://d1c3rffik0endi.cloudfront.net"
43+
"command": "open https://d1c3rffik0endi.cloudfront.net",
44+
"problemMatcher": []
3945
},
4046
{
4147
"label": "Invalidate Cloudfront Cache",
4248
"type": "shell",
43-
"command": "source envs && make cfinvalidate"
49+
"command": "source envs && make cfinvalidate",
50+
"problemMatcher": []
4451
},
4552
]
4653
}

0 commit comments

Comments
 (0)