From 0a36065365c7d737ef00545b5550e3d4206a5893 Mon Sep 17 00:00:00 2001 From: joncloud Date: Wed, 25 Jan 2023 15:22:22 -0800 Subject: [PATCH] Adds codespaces devcontainer --- .devcontainer/devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b1b518a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:16", + "hostRequirements": { + "cpus": 1 + }, + "waitFor": "onCreateCommand", + "updateContentCommand": "npm ci && npm run build && npm run test", + "postCreateCommand": "apt update && apt install -y nsis nsis-pluginapi", + "customizations": { + "codespaces": { + "openFiles": [] + } + } +}