From 466458a6649b5ca5f259ce747053fdf18b25cf5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Aug 2026 19:34:54 +0200 Subject: [PATCH] Point repo URLs at dev.pivoine.art Replace the placeholder GitHub URL in the scaffolded config template with the project's real repo, and add matching Repository/repository metadata to pyproject.toml and app/package.json. Co-Authored-By: Claude Sonnet 5 --- app/package.json | 5 +++++ pyproject.toml | 3 +++ triggershell/templates/triggershell.yml | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/package.json b/app/package.json index 2ed7625..3d831aa 100644 --- a/app/package.json +++ b/app/package.json @@ -3,6 +3,11 @@ "version": "0.1.0", "private": true, "type": "module", + "repository": { + "type": "git", + "url": "https://dev.pivoine.art/valknar/triggershell.git", + "directory": "app" + }, "scripts": { "dev": "tsx watch server.ts", "build": "next build", diff --git a/pyproject.toml b/pyproject.toml index da45088..040d110 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,9 @@ dependencies = [ "python-dotenv>=1.0", ] +[project.urls] +Repository = "https://dev.pivoine.art/valknar/triggershell.git" + [project.scripts] triggershell = "triggershell.cli:app" diff --git a/triggershell/templates/triggershell.yml b/triggershell/templates/triggershell.yml index 464091c..97d999b 100644 --- a/triggershell/templates/triggershell.yml +++ b/triggershell/templates/triggershell.yml @@ -1,5 +1,5 @@ # TriggerShell configuration. -# Full reference: https://github.com//triggershell/blob/main/docs/CONFIG_REFERENCE.md +# Full reference: https://dev.pivoine.art/valknar/triggershell.git (see docs/CONFIG_REFERENCE.md) server: host: 127.0.0.1