@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
12 lines (7 loc) • 335 B
text/typescript
import { pgGenerate } from 'drizzle-dbml-generator';
import { join } from 'node:path';
import * as schema from '../../src/database/schemas';
const out = join(__dirname, '../../docs/development/database-schema.dbml');
const relational = true;
pgGenerate({ out, relational, schema });
console.log('🏁 dbml generated successful!');