EXPERIMENTAL vNext Reporting Bounded Context Mono Repository
The reporting bc is the generic mechanisms by which client BCs’ data can be persisted, and kept up to date, in a Reporting Data Store, so users and systems, can later consume this data directly from the Reporting Data Store, or through any Reporting and/or Dashboarding tools connected to the Reporting Data Store.
See the Reference Architecture documentation reporting section for context on this vNext implementation guidelines.
The Reporting BC consists of the following packages;
participants-reporting-svc
Participants Reporting Service.
README
quotes-reporting-svc
Quotes Reporting Service.
README
reporting-api-svc
Reporting API Service.
README
reporting-types-lib
Reporting Types Library.
README
settlements-reporting-svc
Settlements Reporting Service.
README
transfers-reporting-svc
Transfers Reporting Service.
README
Please follow the instruction in Onboarding Document to setup and run the service locally.
See the README.md file on each services for more Environment Variable Configuration options.
Logs are sent to standard output by default.
npm run test:unit
npm run test:integration
Requires integration tests pre-requisites
npm run test
After running the unit and/or integration tests:
npm run posttest
You can then consult the html report in:
coverage/lcov-report/index.html
We use npm audit to check dependencies for node vulnerabilities.
To start a new resolution process, run:
npm run audit:fix
You can check to see if the CI will pass based on the current dependencies with:
npm run audit:check
Execute locally the pre-commit checks - these will be executed with every commit and in the default CI/CD pipeline
Make sure these pass before committing any code
npm run pre_commit_check
As part of our CI/CD process, we use CircleCI. The CircleCI workflow automates the process of publishing changed packages to the npm registry and building Docker images for select packages before publishing them to DockerHub. It also handles versioning, tagging commits, and pushing changes back to the repository.
The process includes five phases.
-
Setup : This phase initializes the environment, loads common functions, and retrieves commits and git change history since the last successful CI build.
-
Detecting Changed Package.
-
Publishing Changed Packages to NPM.
-
Building Docker Images and Publishing to DockerHub.
-
Pushing Commits to Git.
All code is automatically linted, built, and unit tested by CircleCI pipelines, where unit test results are kept for all runs. All libraries are automatically published to npm.js, and all Docker images are published to Docker Hub.
The following documentation provides insight into the Settlements Bounded Context.