diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..395adece --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json", + "name": "do-knowledge-studio", + "image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm", + "features": { + "ghcr.io/devcontainers/features/github-cli:1": {} + }, + "customizations": { + "vscode": { + "extensions": [] + } + }, + "postCreateCommand": "corepack install --global pnpm@10.30.3 && pnpm install --frozen-lockfile", + "forwardPorts": [3000], + "portsAttributes": { + "3000": { + "label": "Next.js development server", + "onAutoForward": "notify" + } + } +} \ No newline at end of file