Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a8d320b

Browse files
authoredNov 8, 2024
Merge branch 'main' into education-add-blackboard-lms
2 parents 835d932 + b1a68cb commit a8d320b

File tree

1,583 files changed

+197994
-89261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,583 files changed

+197994
-89261
lines changed
 

‎.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# To find available Node images, see https://mcr.microsoft.com/en-us/product/devcontainers/javascript-node/tags
22

33
# [Choice] Node.js version
4-
ARG VARIANT="dev-20-bullseye"
4+
ARG VARIANT="dev-22-bullseye"
55
FROM mcr.microsoft.com/devcontainers/javascript-node:${VARIANT}
66

77
# [Optional] Uncomment this section to install additional OS packages.

‎.devcontainer/devcontainer.json

+55-58
Original file line numberDiff line numberDiff line change
@@ -2,70 +2,67 @@
22
// https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node
33
// -
44
{
5-
"name": "docs.github.com",
6-
"build": {
7-
"dockerfile": "Dockerfile",
8-
// Update 'VARIANT' to pick a Node version
9-
"args": { "VARIANT": "20" }
10-
},
5+
"name": "docs.github.com",
6+
"build": {
7+
"dockerfile": "Dockerfile",
8+
// Update 'VARIANT' to pick a Node version
9+
"args": { "VARIANT": "22" }
10+
},
1111

12-
// Install features. Type 'feature' in the VS Code command palette for a full list.
13-
"features": {
14-
"sshd": "latest"
15-
},
12+
// Install features. Type 'feature' in the VS Code command palette for a full list.
13+
"features": {
14+
"sshd": "latest"
15+
},
1616

17-
"customizations": {
18-
"vscode": {
19-
// Set *default* container specific settings.json values on container create.
20-
"settings": {
21-
"terminal.integrated.shell.linux": "/bin/bash",
22-
"cSpell.language": ",en"
23-
},
24-
// Visual Studio Code extensions which help authoring for docs.github.com.
25-
"extensions": [
26-
"dbaeumer.vscode-eslint",
27-
"sissel.shopify-liquid",
28-
"davidanson.vscode-markdownlint",
29-
"bierner.markdown-preview-github-styles",
30-
"streetsidesoftware.code-spell-checker",
31-
"alistairchristie.open-reusables",
32-
"AlistairChristie.version-identifier",
33-
"peterbe.ghdocs-goer",
34-
"GitHub.copilot",
35-
"GitHub.copilot-chat"
36-
]
37-
},
38-
"codespaces": {
39-
"repositories": {
40-
// allow Codespaces to pull from separate repo when user has access
41-
"github/docs-early-access": {
42-
"permissions": {
43-
"contents": "write"
44-
}
45-
}
46-
}
47-
}
17+
"customizations": {
18+
"vscode": {
19+
// Set *default* container specific settings.json values on container create.
20+
"settings": {
21+
"terminal.integrated.shell.linux": "/bin/bash",
22+
"cSpell.language": ",en"
23+
},
24+
// Visual Studio Code extensions which help authoring for docs.github.com.
25+
"extensions": [
26+
"dbaeumer.vscode-eslint",
27+
"sissel.shopify-liquid",
28+
"davidanson.vscode-markdownlint",
29+
"bierner.markdown-preview-github-styles",
30+
"streetsidesoftware.code-spell-checker",
31+
"alistairchristie.open-reusables",
32+
"AlistairChristie.version-identifier",
33+
"peterbe.ghdocs-goer",
34+
"GitHub.copilot",
35+
"GitHub.copilot-chat"
36+
]
4837
},
49-
50-
// Use 'forwardPorts' to make a list of ports inside the container available locally.
51-
"forwardPorts": [4000],
52-
53-
"portsAttributes": {
54-
"4000": {
55-
"label": "Preview"
38+
"codespaces": {
39+
"repositories": {
40+
// allow Codespaces to pull from separate repo when user has access
41+
"github/docs-early-access": {
42+
"permissions": {
43+
"contents": "write"
44+
}
5645
}
57-
},
46+
}
47+
}
48+
},
5849

59-
// Use 'postCreateCommand' to run commands after the container is created.
60-
"postCreateCommand": "npm ci",
50+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
51+
"forwardPorts": [4000],
6152

62-
// Use 'updateContentCommand' to run commands to be included in Codespace pre-builds
63-
"updateContentCommand": "git clone https://github.com/github/rest-api-description.git",
53+
"portsAttributes": {
54+
"4000": {
55+
"label": "Preview"
56+
}
57+
},
6458

65-
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
66-
"remoteUser": "node",
59+
// Use 'postCreateCommand' to run commands after the container is created.
60+
"postCreateCommand": "npm ci",
6761

68-
"hostRequirements": {
69-
"memory": "8gb"
70-
}
62+
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
63+
"remoteUser": "node",
64+
65+
"hostRequirements": {
66+
"memory": "8gb"
67+
}
7168
}

0 commit comments

Comments
 (0)