From 288b21cec98421fda57028a0c8c9d835cfbb14b0 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 22 May 2026 17:07:31 +0900 Subject: feat: add/remove keys from UI, backend URL setting, user service, Docker fix - Add POST /models/add-key and POST /models/remove-key API endpoints - Add 'Add New Key' modal (page-level) with provider selection - Add remove button per key in Model Status view - Add configurable backend URL setting in Settings panel with localStorage persistence - Convert systemd service from system to user service (systemctl --user) - Fix Docker entrypoint to chown all nested node_modules dirs - Update dispatch.toml credential paths to use -pro/-max naming - Make API port configurable via PORT env var (default 3000, prod 18390) --- dispatch.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dispatch.toml') diff --git a/dispatch.toml b/dispatch.toml index 4332462..72ff9bb 100644 --- a/dispatch.toml +++ b/dispatch.toml @@ -8,13 +8,13 @@ id = "claude-pro" provider = "anthropic" base_url = "https://api.anthropic.com/v1" -credentials_file = "/home/tradam/.claude/.credentials-1.json" +credentials_file = "/home/tradam/.claude/.credentials-pro.json" [[keys]] id = "claude-max" provider = "anthropic" base_url = "https://api.anthropic.com/v1" -credentials_file = "/home/tradam/.claude/.credentials-2.json" +credentials_file = "/home/tradam/.claude/.credentials-max.json" [[keys]] id = "opencode-1" -- cgit v1.2.3