diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..af72dc2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +{ + "name": "metridash-devcontainer", + "build": { + "dockerfile": "../Dockerfile" + }, + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "ms-azuretools.vscode-docker", + "github.vscode-github-actions", + "dbaeumer.vscode-eslint", + "dsznajder.es7-react-js-snippets" + ] + } + }, + "forwardPorts": [5314], + "postStartCommand": "npm install && npm run dev", + "mounts": ["type=volume,target=${containerWorkspaceFolder}/node_modules"] +}