This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
nyx/tenants/loop42/config.ts
Nico 42c6079755 Multi-tenant build system with K8s namespace separation
Build-time tenant config via VITE_TENANT env var (--mode loop42/dev).
Content pages moved to tenants/{name}/pages/ with dynamic imports and
loop42 fallback. Feature-gated routing (viewer/devTools per tenant).
Dockerfile parameterized with TENANT build arg. Deployed to separate
K8s namespaces: loop42.de → ns/loop42, loop42.dev → ns/dev.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-01 17:09:22 +02:00

17 lines
319 B
TypeScript

import type { TenantConfig } from '../../src/tenant';
const config: TenantConfig = {
id: 'loop42',
name: 'loop42',
domain: 'loop42.de',
defaultTheme: 'loop42',
features: {
graph: false,
trace: false,
viewer: false,
devTools: false,
},
};
export default config;