Skip to content

app-generator/deploypro-nextjs-pgsql

Repository files navigation

Simple TODO List

Simple todo list base on Vercel Fullstack Guides.

Getting Started

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.

Environment

POSTGRES_PRISMA_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=sample"