graphql-engine/.devcontainer/docs/devcontainer.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
568 B
JSON
Raw Permalink Normal View History

{
"name": "Node.js",
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18",
"features": {
"ghcr.io/devcontainers/features/git:1": {}
},
"forwardPorts": [3000],
"postCreateCommand": "cd docs && yarn install",
"customizations": {
"codespaces": {
"vscode": {
"extensions": ["esbenp.prettier-vscode", "streetsidesoftware.code-spell-checker"]
},
"openFiles": ["docs/CODESPACES.md"]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}