From 3ea570ac3a9978697f02f738b17a44595a650303 Mon Sep 17 00:00:00 2001 From: Peter Yates Date: Wed, 10 Apr 2024 12:14:19 +0100 Subject: [PATCH] Add basic devcontainer config --- .devcontainer/boot.sh | 1 + .devcontainer/devcontainer.json | 5 +++++ 2 files changed, 6 insertions(+) create mode 100755 .devcontainer/boot.sh create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/boot.sh b/.devcontainer/boot.sh new file mode 100755 index 0000000..5fdd18f --- /dev/null +++ b/.devcontainer/boot.sh @@ -0,0 +1 @@ +npm install diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..fadd685 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": {}, + "postCreateCommand": ".devcontainer/boot.sh" +}