This is a Next.js project bootstrapped with create-next-app
.
This app uses Prisma ORM and Sqlite as a database.
- You have to download this repository
- unpack it
- run commend: "npm i" using terminal or powershell
- You need to feel prisma model with the one included in the repository
- then generate the prisma client using commend: prisma migrate
- after that all probably you are done and you can start the server with commend: "npm run dev"
model Todo { id String @id @default(uuid()) title String checked Boolean @default(false) }