Merge pull request #69 from Kilo-Org/allow-env-var-ingest-endpoint-override

This commit is contained in:
Igor Šćekić
2026-01-29 19:37:23 +01:00
committed by GitHub
+1 -1
View File
@@ -67,7 +67,7 @@ export namespace ShareNext {
const valid = await authValid(token)
if (!valid) return undefined
const base = "https://ingest.kilosessions.ai"
const base = process.env["KILO_SESSION_INGEST_URL"] ?? "https://ingest.kilosessions.ai"
const baseHeaders: Record<string, string> = {
"Content-Type": "application/json",
Authorization: `Bearer ${token}`,