git clone https://github.com/vercel/postgres-next-starter
cd postgres-next-starter
pnpm install
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.