From e1a012fb59349ab0b13b45db0378f18b6df42ba4 Mon Sep 17 00:00:00 2001 From: Md Shahriar Hasan <240978210+shahriar-hdu@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:51:21 +0800 Subject: [PATCH] Add devcontainer configuration for Codespace --- .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..b4617c42 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + // Name this configuration + "name": "Codespace for Skills!", + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot" + ] + } + } +}