From d20cf00fb158d3d4f8e7454b1b7d8cf19d7ce9aa Mon Sep 17 00:00:00 2001 From: Ayumu Inaba Date: Mon, 11 Dec 2023 17:16:12 +0900 Subject: [PATCH] add devcontainer configuration file --- .../.devcontainer/devcontainer.json | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 5.internal-document-search/.devcontainer/devcontainer.json diff --git a/5.internal-document-search/.devcontainer/devcontainer.json b/5.internal-document-search/.devcontainer/devcontainer.json new file mode 100644 index 0000000..147f4ae --- /dev/null +++ b/5.internal-document-search/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +{ + "name": "internal document search", + "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", + "features": { + "ghcr.io/devcontainers/features/azure-cli:1": {}, + "ghcr.io/devcontainers/features/node:1": {}, + "ghcr.io/devcontainers/features/powershell:1": {}, + "ghcr.io/azure/azure-dev/azd:0": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-azuretools.vscode-bicep", + "ms-python.python", + "GitHub.copilot", + "GitHub.copilot-chat" + ] + } + } +} \ No newline at end of file