From 806ddb5498373cbff31bb054366e0ff9a14bbf27 Mon Sep 17 00:00:00 2001 From: plx Date: Mon, 24 Nov 2025 07:05:03 -0600 Subject: [PATCH] Create devcontainer with Catnip feature --- .devcontainer/devcontainer.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ae1733a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,10 @@ +{ + "name": "Development Container", + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "features": { + "ghcr.io/wandb/catnip/feature:1": {} + }, + "forwardPorts": [ + 6369 + ] +}