Add database-backed runtime configuration for feature flags and TTS provider credentials, editable via a new admin UI panel. Replace static NEXT_PUBLIC_* and TTS provider env vars with admin-managed settings stored in the database and injected at SSR for client access. Implement admin-only panels for managing shared TTS provider credentials (with encrypted API keys) and live site feature flags. Add schema migrations, API routes, React contexts, and hooks for SSR-injected runtime config and live updates. Update client and server logic to resolve configuration from the database at runtime, enforcing admin restrictions and supporting migration from legacy env-based config. BREAKING CHANGE: Feature flags and TTS provider credentials are now managed at runtime via the admin UI. Environment variables are only used for initial seeding and are ignored after first boot. Existing deployments must migrate configuration to the admin panel.
25 lines
No EOL
918 B
SQL
25 lines
No EOL
918 B
SQL
CREATE TABLE "admin_providers" (
|
|
"id" text PRIMARY KEY NOT NULL,
|
|
"slug" text NOT NULL,
|
|
"display_name" text NOT NULL,
|
|
"provider_type" text NOT NULL,
|
|
"base_url" text,
|
|
"api_key_ciphertext" text NOT NULL,
|
|
"api_key_iv" text NOT NULL,
|
|
"api_key_last4" text,
|
|
"default_model" text,
|
|
"default_instructions" text,
|
|
"enabled" integer DEFAULT 1 NOT NULL,
|
|
"created_at" bigint DEFAULT (extract(epoch from now()) * 1000)::bigint NOT NULL,
|
|
"updated_at" bigint DEFAULT (extract(epoch from now()) * 1000)::bigint NOT NULL,
|
|
CONSTRAINT "admin_providers_slug_unique" UNIQUE("slug")
|
|
);
|
|
--> statement-breakpoint
|
|
CREATE TABLE "admin_settings" (
|
|
"key" text PRIMARY KEY NOT NULL,
|
|
"value_json" jsonb NOT NULL,
|
|
"source" text DEFAULT 'admin' NOT NULL,
|
|
"updated_at" bigint DEFAULT (extract(epoch from now()) * 1000)::bigint NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
ALTER TABLE "user" ADD COLUMN "is_admin" boolean DEFAULT false NOT NULL; |