From 0a4185fd5e1e88613a42e8c793a12634a12453bb Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri Benedetti Date: Thu, 30 Oct 2025 11:08:40 +0100 Subject: [PATCH 1/2] Add devcontainer --- .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 00000000..18999ab3 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + // You can have other configurations here + "image": "mcr.microsoft.com/devcontainers/universal:latest", + + // This is the key part for adding extensions + "customizations": { + "vscode": { + "extensions": [ + "Elastic.elastic-docs-v3-utilities" + ] + } + } +} \ No newline at end of file From 93fd854dd7ed04608ed248734a94666da32b9e8e Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri Benedetti Date: Thu, 30 Oct 2025 11:12:04 +0100 Subject: [PATCH 2/2] Add extensions file --- .vscode/extensions.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..c6ee6ee2 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "Elastic.elastic-docs-v3-utilities" + ] +}