mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-01 15:32:11 +08:00
Merge pull request #69 from Kilo-Org/allow-env-var-ingest-endpoint-override
This commit is contained in:
@@ -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}`,
|
||||
|
||||
Reference in New Issue
Block a user