From fe7f6f0cb48cbe77a13d86f5240cbf18ddb85ba3 Mon Sep 17 00:00:00 2001 From: Andrew Hay <39sumer3939@gmail.com> Date: Fri, 13 Sep 2024 18:45:32 +0000 Subject: [PATCH] feat: add codespace definition --- devcontainer.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 devcontainer.json diff --git a/devcontainer.json b/devcontainer.json new file mode 100644 index 0000000000..b5f283a7d7 --- /dev/null +++ b/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Go Development Environment", + "image": "mcr.microsoft.com/vscode/devcontainers/go:1", + "features": { + "ghcr.io/devcontainers/features/go:1": {} + }, + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "extensions": [ + "golang.go" + ] +} \ No newline at end of file