mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-07 22:24:06 -05:00
* improvement(db): remove vercel, remove railway, remove crons, improve DB connection config * remove NEXT_PUBLIC_VERCEL_URL * remove db url fallbacks * remove railway & more vercel stuff --------- Co-authored-by: waleed <waleed>
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import type { Config } from 'drizzle-kit'
|
|
|
|
export default {
|
|
schema: './schema.ts',
|
|
out: './migrations',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL!,
|
|
},
|
|
} satisfies Config
|