From 16aa77a6634c78606809d791011f4e1e85ab4722 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Fri, 2 Aug 2024 15:36:40 +0300 Subject: [PATCH] Add the devcontainer configuration. --- .devcontainer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .devcontainer.json diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 0000000..2f69206 --- /dev/null +++ b/.devcontainer.json @@ -0,0 +1,12 @@ +{ + "customizations": { + "vscode": { + "extensions": [ + "mkhl.direnv" + ] + } + }, + "image": "ghcr.io/cachix/devenv:latest", + "overrideCommand": false, + "updateContentCommand": "devenv test" +}