mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
29 lines
802 B
TypeScript
29 lines
802 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
import { config } from "~/config.ts";
|
|
|
|
/**
|
|
* Drizzle can't properly resolve imports with top-level await, so uncomment
|
|
* this line when generating migrations.
|
|
*/
|
|
export default {
|
|
dialect: "postgresql",
|
|
out: "./drizzle/migrations",
|
|
schema: "./drizzle/schema.ts",
|
|
dbCredentials: {
|
|
/* host: "localhost",
|
|
port: 40000,
|
|
user: "lysand",
|
|
password: "lysand",
|
|
database: "lysand", */
|
|
host: config.postgres.host,
|
|
port: config.postgres.port,
|
|
user: config.postgres.username,
|
|
password: config.postgres.password,
|
|
database: config.postgres.database,
|
|
},
|
|
// Print all statements
|
|
verbose: true,
|
|
// Always ask for confirmation
|
|
strict: true,
|
|
} satisfies Config;
|