From 3b6e443483d01946b352c3cb043fb9765ce209e6 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sun, 7 Jun 2026 02:11:46 +0400 Subject: [PATCH] feat: added devcontainer --- .devcontainer/devcontainer.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..a360a15 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,24 @@ +{ + "image": "mcr.microsoft.com/devcontainers/go:latest", + "forwardPorts": [ + 3300 + ], + "portsAttributes": { + "3300": { + "label": "Application", + "onAutoForward": "notify" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "golang.go" + ] + } + }, + "runArgs": [ + "--cap-add=SYS_PTRACE", + "--security-opt", + "seccomp=unconfined" + ] +} \ No newline at end of file