A progressive Node.js framework for building efficient and scalable server-side applications.
$ npm install
# start the PostgreSQL database with Docker
$ docker-compose up -d
# apply database migrations
$ npx prisma migrate dev
# seed the database (optional)
$ npx prisma db seed
# run app
$ npm run start:dev