The Doc-Generator is an easily integrable and reusable tool built on open-source software (OSS). It provides seamless generation of single and bulk documents in various available formats, ensuring interoperability. Additionally, it offers the following features:
The project is built on a plugin model, which ensures customizability and wide adoption.
Prerequisites -
# Copy env file
$ cp .env.copy .env
# Specify the local compose file
$ docker-compose -f docker-compose.local.yml up -d
# Installing app dependencies
$ yarn install
# Run Prisma migrations
$ yarn prisma migrate dev -n init
# Start in watch mode
$ yarn start:dev
Prerequisites -
# Edit .env file according to your production setup
$ cp .env.copy .env
# Production build includes the app service
$ docker-compose up -d --build
# go inside the container
docker-compose exec app bash
# run migration
npx prisma migrate dev
# exit out of container
exit
Check if all the containers are running using docker ps
# Run unit tests
$ yarn run test
# Run end-to-end tests
$ yarn run test:e2e
# Generate test coverage
$ yarn run test:cov