a90dc8d5b5
* Add support for VSCode remote development * misc: remote dev containers fixes Co-authored-by: Nicolas Giard <github@ngpixel.com>
34 lines
984 B
JSON
34 lines
984 B
JSON
// 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"]
|
|
}
|