From 0e0a0a26a6a5079c80e23980a994e8a3e4b6d139 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 22 Jan 2026 14:55:28 +0100 Subject: [PATCH] Update Dependabot config, add docs package.json, and refine Docker workflow --- .github/dependabot.yml | 4 ++-- .github/workflows/deploy_docker_dev.yml | 2 +- docs/package.json | 13 +++++++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 docs/package.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 98e13bb1..ce6cfc51 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,10 @@ version: 2 updates: - package-ecosystem: 'npm' - directory: '/' + directory: '/client' schedule: interval: 'daily' - package-ecosystem: 'npm' - directory: '/client' + directory: '/web' schedule: interval: 'daily' \ No newline at end of file diff --git a/.github/workflows/deploy_docker_dev.yml b/.github/workflows/deploy_docker_dev.yml index ce1f7dac..06edfba6 100644 --- a/.github/workflows/deploy_docker_dev.yml +++ b/.github/workflows/deploy_docker_dev.yml @@ -29,5 +29,5 @@ jobs: uses: docker/build-push-action@v3 with: push: true - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64 tags: germannewsmaker/myspeed:development \ No newline at end of file diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 00000000..23d84c08 --- /dev/null +++ b/docs/package.json @@ -0,0 +1,13 @@ +{ + "name": "myspeed-docs", + "version": "1.0.0", + "private": true, + "scripts": { + "dev": "vitepress dev", + "build": "vitepress build", + "preview": "vitepress preview" + }, + "devDependencies": { + "vitepress": "^1.5.0" + } +}