From 3f6360d0b4a16fbdf8955c5b7705dc964fa6ab56 Mon Sep 17 00:00:00 2001 From: Manny Silva Date: Thu, 13 Nov 2025 16:53:46 -0800 Subject: [PATCH 1/4] Add devcontainer config --- .devcontainer/devcontainer.json | 38 +++++++++++++++++++++++++++++++++ .github/dependabot.yml | 12 +++++++++++ package.json | 2 +- 3 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .github/dependabot.yml diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..5999ac23 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,38 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node +{ + "name": "Node.js & TypeScript", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", + + // Features to add to the dev container. More info: https://containers.dev/features. + "features": { + // "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + // "ghcr.io/devcontainers/features/git-lfs:1": {}, + "ghcr.io/devcontainers/features/github-cli:1": {}, + // "ghcr.io/devcontainers/features/go:1": {}, + // "ghcr.io/devcontainers/features/java:1": {}, + // "ghcr.io/devcontainers/features/python:1": {}, + // "ghcr.io/devcontainers/features/ruby:1": {}, + // "ghcr.io/devcontainers/features/rust:1": {}, + "ghcr.io/devcontainers-extra/features/act:1": {}, + // "ghcr.io/devcontainers-extra/features/apt-get-packages:1": {}, + // "ghcr.io/devcontainers-extra/features/apt-packages:1": {}, + // "ghcr.io/meaningful-ooo/devcontainer-features/homebrew:2": {}, + "ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {}, + "ghcr.io/shinepukur/devcontainer-features/vale:1": {}, + "ghcr.io/devcontainers-community/npm-features/prettier:1": {} + }, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [3000], + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "npm install" + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..f33a02cd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for more information: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://containers.dev/guide/dependabot + +version: 2 +updates: + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly diff --git a/package.json b/package.json index b3807e85..f12f7feb 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "scripts": { "docusaurus": "docusaurus", "prestart": "npm run build-schemas", - "start": "docusaurus start", + "start": "docusaurus start --host 0.0.0.0", "prebuild": "npm run build-schemas", "build": "docusaurus build", "swizzle": "docusaurus swizzle", From 676a45bfbad9abcd4c473a7749def223375142d7 Mon Sep 17 00:00:00 2001 From: Manny Silva Date: Thu, 13 Nov 2025 17:05:51 -0800 Subject: [PATCH 2/4] Update .github/dependabot.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f33a02cd..f482ec3c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ version: 2 updates: - - package-ecosystem: "devcontainers" + - package-ecosystem: "devcontainers" directory: "/" schedule: interval: weekly From 45eec85f9065e2ddd51288e3311a75f8623c4d46 Mon Sep 17 00:00:00 2001 From: Manny Silva Date: Thu, 13 Nov 2025 17:05:57 -0800 Subject: [PATCH 3/4] Update .devcontainer/devcontainer.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5999ac23..bc8ece80 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -28,7 +28,7 @@ "forwardPorts": [3000], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "npm install" + "postCreateCommand": "npm install", // Configure tool-specific properties. // "customizations": {}, From 941443840d756a8e618b27ba4122b05d825b7e0c Mon Sep 17 00:00:00 2001 From: Manny Silva Date: Thu, 13 Nov 2025 17:21:49 -0800 Subject: [PATCH 4/4] Update .github/dependabot.yml Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f482ec3c..9d8f2d04 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,6 @@ version: 2 updates: - package-ecosystem: "devcontainers" - directory: "/" - schedule: - interval: weekly + directory: "/" + schedule: + interval: weekly