forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
33 lines (33 loc) · 1.24 KB
/
.devcontainer.json
File metadata and controls
33 lines (33 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Codespaces environment for docs.github.com
// For format details, see https://aka.ms/vscode-remote/devcontainer.json
{
"name": "docs.github.com",
"service": "container-doc",
<<<<<<< HEAD
<<<<<<< HEAD
=======
=======
"dockerFile": "Dockerfile",
>>>>>>> f1a1374d... Use project's Dockerfile for codespaces
// Use 'settings' to set *default* container specific settings.json values on container create.
// You can edit these settings after create using File > Preferences > Settings > Remote.
>>>>>>> 4954e202... Add codespaces environment
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"cSpell.language": ",en"
},
<<<<<<< HEAD
// Install pre-requisites, and start to serve docs.github.com locally
"postCreateCommand": "npm install && npm start",
"forwardPorts": [4000],
// Visual Studio Code extensions which help authoring for docs.github.com.
=======
"postCreateCommand": "npm install && npm start",
"appPort": 4000,
// Add the IDs of extensions you want installed when the container is created in the array below.
>>>>>>> 4954e202... Add codespaces environment
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker"
]
}