diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..bc8ece80 --- /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..9d8f2d04 --- /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",