- New smart-ide-global-api (127.0.0.1:37149): internal bearer, upstream proxy, X-OIDC forward - SSO gateway calls global API with GLOBAL_API_INTERNAL_TOKEN; logs to .logs/sso-gateway/ - Aggregated config example, docs, VERSION 0.0.2, claw proxy local URL hint
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
/** Upstream keys exposed to OIDC-authenticated clients; traffic is relayed via smart-ide-global-api. */
|
|
export const listUpstreamKeys = (): string[] => [
|
|
"orchestrator",
|
|
"repos_devtools",
|
|
"ia_dev_gateway",
|
|
"anythingllm_devtools",
|
|
"tools_bridge",
|
|
"langextract",
|
|
"regex_search",
|
|
"claw_proxy",
|
|
"local_office",
|
|
];
|