Skip to content

Commit

Permalink
chore: add devcontainer config
Browse files Browse the repository at this point in the history
  • Loading branch information
johnitvn committed Nov 23, 2024
1 parent 65f31e4 commit 60002db
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"image": "ghcr.io/ebizbase/node-dind-devcontainer:1",
"runArgs": [
"--name=ebizbase-dev-infras-devcontainer"
],
"mounts": [
"source=ebizbase-dev-infras-devcontainer-dind,target=/var/lib/docker,type=volume"
],
"remoteUser": "vscode",
"postCreateCommand": "bun install",
"customizations": {
"vscode": {
"settings": {
"files.associations": {
"*.json": "jsonc"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"json.schemas": [
{
"fileMatch": [
"*/devcontainer-feature.json"
],
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json"
},
{
"fileMatch": [
"*/devcontainer.json"
],
"url": "https://github.com/devcontainers/spec/raw/refs/heads/main/schemas/devContainer.schema.json"
},
{
"fileMatch": [
"*/package.json"
],
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/package.json"
}
]
},
"extensions": [
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"shd101wyy.markdown-preview-enhanced",
"steoates.autoimport",
"github.vscode-github-actions",
"redhat.vscode-yaml",
"mads-hartmann.bash-ide-vscode",
"firsttris.vscode-jest-runner"
]
}
}
}

0 comments on commit 60002db

Please sign in to comment.