This is the REST API server of Sadaqa platform build in top nestjs. Following a modular monolithic architecture where each module is either following a simple CRUD architecture or a clean architecture depending on his complexity
npm test
npm run test:coverage
npm run start:dev
npm run start
npm run build && npm run start:prod
first create the containers and run them
docker-compose up
then access the shell of the container of the server app
docker exec -it <SERVER_APP_CONTAINER_ID> sh
and finally set up the database
npx prisma migrate dev && npx prisma db seed