Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 723 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 723 Bytes

Next.js and Postgres Starter Template

Tech Stack

Getting Started

git clone https://github.com/vercel/postgres-next-starter
cd postgres-next-starter
pnpm install

Running Locally

Use the included setup script to create your .env file:

pnpm db:setup

Then, run the database migrations and seed the database:

pnpm db:generate
pnpm db:migrate
pnpm db:seed

Finally, run the Next.js development server:

pnpm dev

Open http://localhost:3000 in your browser to see the app in action.