misc: add support for VSCode remote development (#1533)
* Add support for VSCode remote development * misc: remote dev containers fixes Co-authored-by: Nicolas Giard <github@ngpixel.com>
This commit is contained in:
committed by
GitHub
parent
fba9e0058f
commit
a90dc8d5b5
33
.devcontainer/devcontainer.json
Normal file
33
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,33 @@
|
||||
// How to get remote container development working with VSCode:
|
||||
// 1. Install "Remote Development" extension pack (ms-vscode-remote.vscode-remote-extensionpack)
|
||||
// 2. Select "Remote Containers - Reopen in container"
|
||||
|
||||
{
|
||||
"name": "Wiki.js",
|
||||
"dockerComposeFile": [
|
||||
"../dev/containers/docker-compose.yml"
|
||||
],
|
||||
"forwardPorts": [3000, 3001],
|
||||
"service": "wiki",
|
||||
"workspaceFolder": "/wiki",
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash"
|
||||
},
|
||||
"extensions": [
|
||||
"EditorConfig.editorconfig",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"christian-kohler.path-intellisense",
|
||||
"mrmlnc.vscode-puglint",
|
||||
"octref.vetur",
|
||||
"dzannotti.vscode-babel-coloring",
|
||||
"wayou.vscode-todo-highlight",
|
||||
"visualstudioexptteam.vscodeintellicode",
|
||||
"lukas-tr.materialdesignicons-intellisense",
|
||||
"codezombiech.gitignore",
|
||||
"kumar-harsh.graphql-for-vscode",
|
||||
"mrmlnc.vscode-duplicate",
|
||||
"oderwat.indent-rainbow",
|
||||
"christian-kohler.npm-intellisense"
|
||||
],
|
||||
"postCreateCommand": ["yarn", "install"]
|
||||
}
|
Reference in New Issue
Block a user