mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 17:19:40 +02:00
- Create factory function with dbName, schemaPath, outDir, schemaFilter options - Migrate 12 app backends: calendar, chat, clock, contacts, nutriphi, picture, planta, presi, questions, skilltree, storage, todo - Migrate 4 services: mana-core-auth, telegram-zitare-bot, telegram-todo-bot, telegram-nutriphi-bot - Update consolidation docs with completed Drizzle config task Savings: ~160 LOC (16 configs × ~10 LOC each)
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { createDrizzleConfig } from '@manacore/shared-drizzle-config';
|
|
|
|
export default createDrizzleConfig({
|
|
dbName: 'nutriphi_bot',
|
|
schemaPath: './src/database/schema.ts',
|
|
outDir: './drizzle',
|
|
verbose: false,
|
|
strict: false,
|
|
});
|