Drizzle을 선택한 이유는:
pnpm add @supabase/supabase-js drizzle-orm postgres
pnpm add -D drizzle-kit
supabase 프로젝트의 데이터베이스 연결 정보를 .env.local 파일에 설정
# Database connection
DATABASE_URL="postgresql://postgres
.jhypkhsoyljbszthcfkn:[your-password]@aws-0-ap-southeast-1.pooler.supabase.com:6543/postgres"
src/db 디렉토리를 만들고 필요한 파일들을 생성
import { drizzle } from "drizzle-orm/postgres-js";
import postgres from "postgres";
import * as schema from "./schema";
// PostgreSQL 클라이언트 생성 (Supabase Pooling 모드를 위해 prepare: false 설정)
const client = postgres(process.env.DATABASE_URL!, {
prepare: false,
ssl: "require",
});
// Drizzle ORM 인스턴스 생성
export const db = drizzle(client, { schema });
// 타입 익스포트
export * from "./schema";
import { pgTable, serial, text, timestamp, varchar } from "drizzle-orm/pg-core";
export const posts = pgTable("posts", {
id: serial("id").primaryKey(),
title: varchar("title", { length: 256 }).notNull(),
content: text("content").notNull(),
createdAt: timestamp("created_at").defaultNow().notNull(),
updatedAt: timestamp("updated_at").defaultNow().notNull(),
});
export const about = pgTable("about", {
id: serial("id").primaryKey(),
content: text("content").notNull(),
updatedAt: timestamp("updated_at").defaultNow().notNull(),
});
export type Post = typeof posts.$inferSelect;
export type NewPost = typeof posts.$inferInsert;
export type About = typeof about.$inferSelect;
export type NewAbout = typeof about.$inferInsert;
import type { Config } from "drizzle-kit";
import * as dotenv from "dotenv";
// .env.local 파일 로드
dotenv.config({ path: ".env.local" });
export default {
schema: "./src/db/schema.ts",
out: "./drizzle",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
} satisfies Config;