refactor(web): move website into turbo app workspace
This commit is contained in:
parent
2664804e91
commit
b4e626a868
66 changed files with 318 additions and 298 deletions
10
apps/web/drizzle.config.ts
Normal file
10
apps/web/drizzle.config.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { defineConfig } from "drizzle-kit";
|
||||
|
||||
export default defineConfig({
|
||||
schema: "./src/lib/server/db/schema.ts",
|
||||
out: "./drizzle",
|
||||
dialect: "sqlite",
|
||||
dbCredentials: {
|
||||
url: process.env.DATABASE_URL?.replace(/^file:/, "") || "./data/dimensionlab.sqlite",
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue