From f7c2604121c12991f9674dea0134058d374d1cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sat, 18 Apr 2026 01:48:09 +0200 Subject: [PATCH] Use overpass.private.coffee as primary Overpass endpoint Switch the Planner's primary Overpass endpoint from overpass.kumi.systems to overpass.private.coffee. private.coffee is a privacy-focused public Overpass instance that doesn't log queries, which fits the Planner's privacy-first principle better than the previous default. Keep overpass-api.de as the silent fallback for resilience while the self-host-overpass change is in flight. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/planner/app/lib/overpass.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/planner/app/lib/overpass.ts b/apps/planner/app/lib/overpass.ts index db76e47..e106811 100644 --- a/apps/planner/app/lib/overpass.ts +++ b/apps/planner/app/lib/overpass.ts @@ -1,7 +1,7 @@ import type { PoiCategory } from "@trails-cool/map-core"; const OVERPASS_ENDPOINTS = [ - "https://overpass.kumi.systems/api/interpreter", + "https://overpass.private.coffee/api/interpreter", "https://overpass-api.de/api/interpreter", ];