This project uses PostgreSQL as the database. The easiest way to install it is using docker. Enter the following command on your terminal if you already have docker installed. This will install and run the latest version of postgreSQL.
$ docker run --name zavy -e POSTGRES_PASSWORD=password -p 5432:5432 -d --rm postgres
This project uses pnpm for managing dependancies. If you don't already have it installed, install it using npm install -g pnpm
or choose other available methods here and then:
git clone
this repo andcd
into itpnpm install
pnpm exec prisma migrate dev
(Will apply migrations, make sure database setup is completed)pnpm exec prisma db seed
(Will seed databse with required data)pnpm dev