- Deleted unused configuration and SQL files related to Drizzle. - Removed deprecated logging methods and updated logging to use a unified structure. - Cleaned up package dependencies by removing unused packages from package.json and package-lock.json. - Updated various import paths for consistency and clarity. - Introduced new action and event models to enhance analytics capabilities.
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import "dotenv/config";
|
|
import { defineConfig } from "drizzle-kit";
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
out: "./drizzle",
|
|
schema: "./db/schema.ts",
|
|
dbCredentials: {
|
|
url: process.env.DEV_DATABASE_URL!,
|
|
},
|
|
});
|