Bundles the prior autonomous-session output that was sitting unstaged: - Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances) - country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk after the per-subpath dynamic-import approach silently failed in webpack) - Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index, redirects (ocr to ai, reports to dashboard, invitations to users), docs/admin-ia-proposal.md - Per-template email tester (registry + endpoint + UI on Email admin page) - Cancel-document mode picker (delete-from-Documenso vs keep-for-audit) - Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers - Customize-widgets per-region sortables at xl+ (charts/rails/feed); single flat sortable below xl when the layout stacks; per-viewport saved orders - Audit doc updates capturing each shipped item - Lint fixes: react-compiler immutability in DonutChart (reduce instead of let-reassign), set-state-in-effect disables in CountryFlag and UploadForSigning preview-bytes effect, unused 'confirm' destructures in interest contract + reservation tabs, unescaped apostrophe in test-template card copy
151 lines
6.3 KiB
TypeScript
151 lines
6.3 KiB
TypeScript
import { z } from 'zod';
|
|
|
|
const envSchema = z
|
|
.object({
|
|
// Database
|
|
DATABASE_URL: z.string().url().startsWith('postgresql://'),
|
|
|
|
// Redis
|
|
REDIS_URL: z.string().url().startsWith('redis://'),
|
|
|
|
// Auth
|
|
BETTER_AUTH_SECRET: z.string().min(32),
|
|
BETTER_AUTH_URL: z.string().url(),
|
|
CSRF_SECRET: z.string().min(32),
|
|
|
|
// ─── Tenant-configurable (admin UI is canonical; env is fallback) ─────
|
|
// The settings registry at src/lib/settings/registry.ts wires each of
|
|
// these into the per-port admin UI with port → global → env → default
|
|
// precedence. They're optional here so a fresh deploy without an env
|
|
// file can still boot - the operator configures everything via
|
|
// /admin/<integration> after first super-admin login. See
|
|
// docs/superpowers/specs/2026-05-15-env-to-admin-migration-design.md.
|
|
|
|
// MinIO / S3 (storage backend) - admin: /admin/storage
|
|
MINIO_ENDPOINT: z.string().min(1).optional(),
|
|
MINIO_PORT: z.coerce.number().int().positive().optional(),
|
|
MINIO_ACCESS_KEY: z.string().min(1).optional(),
|
|
MINIO_SECRET_KEY: z.string().min(1).optional(),
|
|
MINIO_BUCKET: z.string().min(1).optional(),
|
|
MINIO_USE_SSL: z
|
|
.enum(['true', 'false'])
|
|
.optional()
|
|
.transform((v) => (v == null ? undefined : v === 'true')),
|
|
|
|
// Documenso - admin: /admin/documenso
|
|
DOCUMENSO_API_URL: z.string().url().optional(),
|
|
DOCUMENSO_API_KEY: z.string().min(1).optional(),
|
|
DOCUMENSO_API_VERSION: z.enum(['v1', 'v2']).default('v1'),
|
|
DOCUMENSO_WEBHOOK_SECRET: z.string().min(16).optional(),
|
|
DOCUMENSO_TEMPLATE_ID_EOI: z.coerce.number().int().positive().optional(),
|
|
DOCUMENSO_CLIENT_RECIPIENT_ID: z.coerce.number().int().positive().optional(),
|
|
DOCUMENSO_DEVELOPER_RECIPIENT_ID: z.coerce.number().int().positive().optional(),
|
|
DOCUMENSO_APPROVAL_RECIPIENT_ID: z.coerce.number().int().positive().optional(),
|
|
|
|
// Email / SMTP - admin: /admin/email
|
|
SMTP_HOST: z.string().min(1).optional(),
|
|
SMTP_PORT: z.coerce.number().int().positive().optional(),
|
|
SMTP_USER: z.string().optional(),
|
|
SMTP_PASS: z.string().optional(),
|
|
SMTP_FROM: z.string().optional(),
|
|
// Dev/test safety net: when set, sendEmail redirects every outbound message
|
|
// to this address regardless of the requested recipient. Leave empty in prod.
|
|
EMAIL_REDIRECT_TO: z.string().email().optional(),
|
|
|
|
// Encryption
|
|
EMAIL_CREDENTIAL_KEY: z
|
|
.string()
|
|
.length(64)
|
|
.regex(/^[0-9a-f]+$/i, 'Must be a 64-character hex string'),
|
|
|
|
// Google OAuth (optional)
|
|
GOOGLE_CLIENT_ID: z.string().optional(),
|
|
GOOGLE_CLIENT_SECRET: z.string().optional(),
|
|
|
|
// Shared secret used by the marketing website's server-side dual-write
|
|
// helper (POST to /api/public/website-inquiries). Set the SAME value on
|
|
// the website's CRM_INTAKE_SECRET env. Leave unset in dev/staging until
|
|
// the website's CRM_INTAKE_URL is also set - without this, the public
|
|
// intake endpoint refuses every request.
|
|
WEBSITE_INTAKE_SECRET: z.string().min(16).optional(),
|
|
|
|
// OpenAI (optional)
|
|
OPENAI_API_KEY: z.string().optional(),
|
|
|
|
// Sentry (optional - when unset the SDK is a no-op)
|
|
NEXT_PUBLIC_SENTRY_DSN: z.string().url().optional(),
|
|
SENTRY_ENVIRONMENT: z.string().optional(),
|
|
SENTRY_TRACES_SAMPLE_RATE: z.coerce.number().min(0).max(1).default(0.1),
|
|
|
|
// App URLs - admin: /admin/general (TODO once general admin page exists;
|
|
// for now write via the API: PUT /api/v1/admin/settings/app_url)
|
|
APP_URL: z.string().url(),
|
|
PUBLIC_SITE_URL: z.string().url().optional(),
|
|
/**
|
|
* Client-side bundle baseline URL. Inlined at build time by Next, so
|
|
* a missing value at build leaks into the browser as the empty
|
|
* string and forces fallbacks (`window.location.origin`) which
|
|
* silently work in dev and break on multi-origin deploys.
|
|
* build-auditor H2: validate at runtime so the bundle never ships
|
|
* with a blank baseline. The validation runs against
|
|
* `process.env.NEXT_PUBLIC_APP_URL` at build time; missing-at-build
|
|
* produces a clear validation error rather than a confusing
|
|
* runtime fallback.
|
|
*/
|
|
NEXT_PUBLIC_APP_URL: z.string().url(),
|
|
NODE_ENV: z.enum(['development', 'production', 'test']).default('development'),
|
|
LOG_LEVEL: z.enum(['fatal', 'error', 'warn', 'info', 'debug', 'trace']).default('info'),
|
|
/**
|
|
* HTTP listener port. zod-coerced from PORT so a typo (`PORT=foo`) hard-
|
|
* fails at boot rather than silently listening on an ephemeral port.
|
|
*/
|
|
PORT: z.coerce.number().int().positive().default(3000),
|
|
/**
|
|
* When true, the filesystem storage backend refuses to start (per
|
|
* src/lib/storage/filesystem.ts:192). Reading via the zod schema means
|
|
* a typo on the env var hard-fails at boot rather than silently
|
|
* disabling the multi-node guard. Per CLAUDE.md, multi-node deploys
|
|
* MUST use the s3-compatible backend.
|
|
*/
|
|
MULTI_NODE_DEPLOYMENT: z
|
|
.enum(['true', 'false'])
|
|
.default('false')
|
|
.transform((v) => v === 'true'),
|
|
})
|
|
.superRefine((env, ctx) => {
|
|
// CRITICAL safety net: EMAIL_REDIRECT_TO is a dev/test feature that
|
|
// silently rewrites every outbound recipient. Leaving it set in prod
|
|
// funnels every customer email (invites, EOIs, portal magic links,
|
|
// contracts) to a single inbox. The audit caught this had only a
|
|
// `logger.debug` line as forensic trail. Refuse boot when both are
|
|
// simultaneously set in production.
|
|
if (env.NODE_ENV === 'production' && env.EMAIL_REDIRECT_TO) {
|
|
ctx.addIssue({
|
|
code: z.ZodIssueCode.custom,
|
|
path: ['EMAIL_REDIRECT_TO'],
|
|
message:
|
|
'EMAIL_REDIRECT_TO must NOT be set in production - it silently rewrites every outbound email recipient. Unset it before deploying.',
|
|
});
|
|
}
|
|
});
|
|
|
|
export type Env = z.infer<typeof envSchema>;
|
|
|
|
function validateEnv(): Env {
|
|
if (process.env.SKIP_ENV_VALIDATION === '1') {
|
|
return process.env as unknown as Env;
|
|
}
|
|
|
|
const result = envSchema.safeParse(process.env);
|
|
if (!result.success) {
|
|
console.error('Invalid environment variables:');
|
|
for (const issue of result.error.issues) {
|
|
console.error(` ${issue.path.join('.')}: ${issue.message}`);
|
|
}
|
|
process.exit(1);
|
|
}
|
|
return result.data;
|
|
}
|
|
|
|
export const env = validateEnv();
|