pollo/drizzle.config.ts

13 lines
294 B
TypeScript
Raw Permalink Normal View History

2023-04-20 04:20:00 -06:00
import type { Config } from "drizzle-kit";
import "dotenv/config";
export default {
2024-01-06 00:37:58 -07:00
schema: "./app/services/schema.server.ts",
2023-04-20 04:20:00 -06:00
out: "./drizzle/generated",
2024-01-06 00:37:58 -07:00
driver: "pg",
2023-04-20 04:20:00 -06:00
breakpoints: true,
dbCredentials: {
2024-01-06 00:37:58 -07:00
connectionString: `${process.env.DATABASE_URL}`,
2023-04-20 04:20:00 -06:00
},
} satisfies Config;