This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Setup or Reset the Database:

Add Prisma to your project:

Create a new db.ts file inside the /lib folder, with the following content:

import { PrismaClient } from '@prisma/client';

declare global {
  var prisma: PrismaClient | undefined;
}

// Avoid instantiating too many instances of Prisma in development
export const db = globalThis.prisma || new PrismaClient();

if (process.env.NODE_ENV !== 'production') {
  globalThis.prisma = db;
}

Initialize Prisma:

npx prisma init

This will create a new folder called prisma in the root of your project, and inside a schema.prisma file with a template for your database schema.

It will also create a new .env file in the root of your project with the following content (or similar):

DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"

Add .env to gitignore:

echo ".env" >> .gitignore

If you want to reset the database, for example after changing the schema, you can run the following commands:

yarn prisma generate
yarn prisma migrate reset
yarn prisma db push

Page Routing

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.