Initial commit of Vellum, an event photo product for guest uploads, host moderation, and original-quality galleries.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import "dotenv/config";
|
||||
import { defineConfig } from "drizzle-kit";
|
||||
|
||||
const url =
|
||||
process.env.DATABASE_URL ??
|
||||
"postgres://album:album@localhost:5439/album";
|
||||
|
||||
export default defineConfig({
|
||||
schema: ["./src/schema.ts", "./src/auth-schema.ts"],
|
||||
out: "./drizzle",
|
||||
dialect: "postgresql",
|
||||
dbCredentials: {
|
||||
url,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user