Simple todo list base on Vercel Fullstack Guides.
First, create the tables in your database, you now can use the following command of the Prisma CLI::
npx prisma db push
Then, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
POSTGRES_PRISMA_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=sample"