This Poc is composed of two NestJS APIs with their dedicated database and an API gateway.
$> docker-compose up -d
$> cd api-books
$> npm i
$> npx prisma migrate dev
$> nest start
$> cd api-libraries
$> npm i
$> npx prisma migrate dev
$> nest start
$> cd api-gateway
$> npm i
$> npm run start