- Copy admin-dashboard-web → dashboards/admin-web - Copy tracker-dashboard-web → dashboards/tracker-web - Update pnpm-workspace.yaml to include dashboards/* - Replace file: refs with workspace:* for @bytelyst/* packages - Replace all hardcoded LysnrAI/lysnn.com branding with generic platform refs - Make telemetry use NEXT_PUBLIC_PRODUCT_ID / PRODUCT_ID env vars - Update mock credentials, seed data, invitation codes, placeholders - Update READMEs, e2e tests, unit tests for product-agnostic content - Both dashboards pass tsc --noEmit clean
23 lines
672 B
Plaintext
23 lines
672 B
Plaintext
# Tracker Dashboard — Environment Variables
|
|
# Copy this file to .env.local and fill in the values.
|
|
#
|
|
# This dashboard is product-agnostic. Set PRODUCT_ID to deploy for any ByteLyst product.
|
|
|
|
# ── Product Identity ──
|
|
PRODUCT_ID=lysnrai
|
|
NEXT_PUBLIC_PRODUCT_ID=lysnrai
|
|
|
|
# ── Microservice URLs (consolidated platform-service) ──
|
|
PLATFORM_SERVICE_URL=http://localhost:4003
|
|
PLATFORM_API_URL=http://localhost:4003
|
|
|
|
# ── Auth (JWT) ──
|
|
JWT_SECRET=
|
|
|
|
# ── Azure Key Vault (optional — resolves secrets at startup) ──
|
|
AZURE_KEYVAULT_URL=
|
|
|
|
# ── Optional: Analytics ──
|
|
NEXT_PUBLIC_POSTHOG_KEY=
|
|
NEXT_PUBLIC_POSTHOG_HOST=https://app.posthog.com
|