Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
chore: Add vscode devcontainer
- Loading branch information
peaceiris
committed
Aug 9, 2020
1 parent
f800244
commit 6b302fd
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "Node.js", | ||
"image": "docker.pkg.github.com/peaceiris/actions-gh-pages/dev:latest", | ||
|
||
// Use 'settings' to set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
|
||
// Add the IDs of extensions you want installed when the container is created in the array below. | ||
"extensions": [ | ||
"bungcip.better-toml", | ||
"EditorConfig.EditorConfig", | ||
"donjayamanne.githistory", | ||
"eamodio.gitlens", | ||
"oderwat.indent-rainbow", | ||
"yzhang.markdown-all-in-one", | ||
"shd101wyy.markdown-preview-enhanced", | ||
"christian-kohler.path-intellisense", | ||
"lfs.vscode-emacs-friendly", | ||
"dbaeumer.vscode-eslint", | ||
"firsttris.vscode-jest-runner", | ||
"VisualStudioExptTeam.vscodeintellicode" | ||
], | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [3000], | ||
|
||
// Specifies a command that should be run after the container has been created. | ||
"postCreateCommand": "npm ci", | ||
|
||
// Comment out the next line to run as root instead. | ||
// "remoteUser": "runner" | ||
} |