init: initial commit

This commit is contained in:
syntaxbullet
2025-12-02 20:53:49 +01:00
commit 25c7ba46f0
17 changed files with 578 additions and 0 deletions

10
app/drizzle.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "drizzle-kit";
export default defineConfig({
schema: "./schema.ts",
out: "./drizzle",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL || "postgres://kyoko:kyoko@localhost:5432/kyoko",
},
});