Files
Final-Year-Project/Backend

backend

Install

bun install

Environment

Create a .env file:

cp .env.example .env

Set:

DATABASE_URL=postgres://username:password@localhost:5432/database_name

Run app

bun run dev

Drizzle ORM

Generate migrations:

bun run db:generate

Apply migrations:

bun run db:migrate

Open Drizzle Studio:

bun run db:studio