Skip to content

Commit

Permalink
feat: add .devcontainer (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
iiio2 committed Apr 15, 2024
1 parent afe2f49 commit e6d0ba8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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"]
}

0 comments on commit e6d0ba8

Please sign in to comment.