From a9d8eab935c95394e4ec93f7352510570e2b8d2e Mon Sep 17 00:00:00 2001 From: Pranam <68323012+prnam@users.noreply.github.com> Date: Mon, 1 May 2023 09:07:59 +0000 Subject: [PATCH] add vscode remote dev container support --- .devcontainer/devcontainer.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..05bb8f5b6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + "name": "Material for MkDocs - VS Code dev container", + "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18", + "features": { + "ghcr.io/devcontainers/features/python:1": { + "installTools": true, + "version": "3.11" + } + }, + "postCreateCommand": "pip install -e . && pip install mkdocs-minify-plugin mkdocs-redirects && npm install && npm run build" +}