Skip to content

Commit 5cc005d

Browse files
committed
Add VS Code tasks and default Codespaces files
Open the ‘how to edit’ doc when opening in Codespaces
1 parent 45917d6 commit 5cc005d

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
"vscode": {
99
"settings": {},
1010
"extensions": ["ms-python.python", "charliermarsh.ruff", "GitHub.copilot"]
11+
},
12+
"codespaces": {
13+
"openFiles": [
14+
"README.md",
15+
"_InstructionSiteUpdates.md"
16+
]
1117
}
1218
},
1319
"features": {

.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": "html",
8+
"type": "shell",
9+
"command": "pixi run html",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": false
13+
}
14+
},
15+
{
16+
"label": "clean",
17+
"type": "shell",
18+
"command": "pixi run clean",
19+
"group": {
20+
"kind": "build",
21+
"isDefault": false
22+
}
23+
},
24+
{
25+
"label": "live",
26+
"type": "shell",
27+
"command": "pixi run live",
28+
"group": {
29+
"kind": "build",
30+
"isDefault": true
31+
}
32+
}
33+
]
34+
}

0 commit comments

Comments
 (0)