Add full monorepo: virtual-banker, backend, frontend, docs, scripts, deployment

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-10 11:32:49 -08:00
commit b4753cef7e
81 changed files with 9255 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
-- Add default tenant if not exists
INSERT INTO tenants (id, name, theme, avatar_enabled, greeting, allowed_tools, policy)
VALUES (
'default',
'Default Tenant',
'{"primaryColor": "#0066cc", "secondaryColor": "#004499"}'::jsonb,
true,
'Hello! How can I help you today?',
'[]'::jsonb,
'{"max_session_duration_minutes": 30, "rate_limit_per_minute": 10, "require_consent": true}'::jsonb
) ON CONFLICT (id) DO NOTHING;