From f67048ee7eb17c68d9571a26b042621146ef88ba Mon Sep 17 00:00:00 2001 From: faucomte97 Date: Thu, 28 Dec 2023 01:25:23 +0000 Subject: [PATCH] Dev container example --- .devcontainer/devcontainer.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..ade5a776 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,24 @@ +{ + "name": "codeforlife", + "image": "mcr.microsoft.com/vscode/devcontainers/python:3.8", + "features": { + "ghcr.io/devcontainers/features/node:1": { + "version": "16" + }, + "ghcr.io/devcontainers-contrib/features/pipenv:2": { + "version": "2023.11.15" + } + }, + // "mounts": [ + // "source=../codeforlife-portal,target=home/root/codeforlife-portal,type=bind,consistency=cached" + // ] + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "ms-python.python", + "dbaeumer.vscode-eslint" + ] + } + } +}