From 6133fb1531f3437cc3ceddece7c46b8cfe55857b Mon Sep 17 00:00:00 2001 From: iphydf Date: Tue, 29 Aug 2023 13:09:58 +0000 Subject: [PATCH] chore: Add devcontainer setup for codespaces. These commands run when starting a new codespaces VM. --- .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 00000000..301b4e7b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers-contrib/features/bash-command:1": { + "command": "git submodule update --init --recursive" + }, + "ghcr.io/devcontainers-contrib/features/apt-packages:1": { + "packages": "libconfig-dev,libopus-dev,libvpx-dev,ninja-build" + } + } +}