From 411a566c047d1201e45a73a036fcc091034468a0 Mon Sep 17 00:00:00 2001 From: Antonio Thomacelli Date: Wed, 10 Jul 2024 10:30:00 -0300 Subject: [PATCH] feat: add devcontainer to remove development --- .devcontainer/devcontainer.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..46f331d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Go Development Environment", + "image": "golang:1.22", + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "postCreateCommand": "go mod tidy", + "forwardPorts": [ + 8080 + ], + "features": {} +} +