- Add modular DB layer (adapters, migrations, repos, helpers) - Replace localDb/usageDb/requestDetailsDb monoliths with repos - Add Tailscale tunnel integration & status check API - Add /api/cli-tools/all-statuses aggregated endpoint - Add settingsStore (Zustand) and mitm/dbReader - Add DB unit tests (benchmark, concurrent, migration, vs-lowdb)
26 lines
652 B
JavaScript
26 lines
652 B
JavaScript
import { getSettings } from "@/lib/localDb";
|
|
import { applyOutboundProxyEnv } from "@/lib/network/outboundProxy";
|
|
|
|
let initialized = false;
|
|
|
|
export async function ensureOutboundProxyInitialized() {
|
|
if (initialized) return true;
|
|
|
|
try {
|
|
const settings = await getSettings();
|
|
applyOutboundProxyEnv(settings);
|
|
initialized = true;
|
|
} catch (error) {
|
|
console.error("[ServerInit] Error initializing outbound proxy:", error);
|
|
}
|
|
|
|
return initialized;
|
|
}
|
|
|
|
// Defer init so HTTP server accepts connections first
|
|
setImmediate(() => {
|
|
ensureOutboundProxyInitialized().catch(console.log);
|
|
});
|
|
|
|
export default ensureOutboundProxyInitialized;
|