// For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/debian { "name": "Dev", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "build": { "dockerfile": "Dockerfile", "cacheFrom": [ "type=registry,ref=ghcr.io/xe/site/devcontainer" ] }, "runArgs": [ "--net=host" ], "postStartCommand": "npm ci && go mod download", "initializeCommand": "mkdir -p ${localEnv:HOME}${localEnv:USERPROFILE}/.local/share/atuin", // Features to add to the dev container. More info: https://containers.dev/features. "features": { "ghcr.io/xe/devcontainer-features/deno:1.2.1": {}, "ghcr.io/devcontainers-extra/features/protoc:1": {}, "ghcr.io/mrsimonemms/devcontainers/buf:1": {}, "ghcr.io/michidk/devcontainers-features/typst:1": {} }, // Configure tool-specific properties. "customizations": { "vscode": { "extensions": [ "unifiedjs.vscode-mdx", "dhall.dhall-lang", "denoland.vscode-deno", "bradlc.vscode-tailwindcss", "ronnidc.nunjucks", "streetsidesoftware.code-spell-checker", "zxh404.vscode-proto3", "xaver.clang-format", "austenc.tailwind-docs", "spellforce.css-tailwind", "esbenp.prettier-vscode" ] } } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }