All checks were successful
Test CI / build (push) Successful in 1m23s
- 자동 로그인 로직 cookie 로 변경
22 lines
378 B
TypeScript
22 lines
378 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
import dotenv from 'dotenv';
|
|
|
|
dotenv.config();
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
schema: "./src/db/schema",
|
|
out: "./drizzle",
|
|
dbCredentials: {
|
|
url: process.env.PG_DATABASE_URL!
|
|
},
|
|
tablesFilter: [
|
|
'account',
|
|
'schedule',
|
|
'comment',
|
|
'follow',
|
|
'favorite',
|
|
'participant'
|
|
]
|
|
});
|