mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 12:09:43 +02:00
Run prettier --write to fix formatting inconsistencies in 80 files across calendar, contacts, picture, presi, storage, zitare apps and shared packages/documentation.
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
dialect: 'postgresql',
|
|
schema: './src/db/schema/index.ts',
|
|
out: './src/db/migrations',
|
|
dbCredentials: {
|
|
url:
|
|
process.env.STORAGE_DATABASE_URL ||
|
|
process.env.DATABASE_URL ||
|
|
'postgresql://manacore:devpassword@localhost:5432/storage',
|
|
},
|
|
verbose: true,
|
|
strict: true,
|
|
});
|