This is a collection of all reference core connectors from COMESA Digital Retdail Payments Platform project. Every folder that is post fixed with the word -core-connector is a core connector for a specific participant
Clone this repository or fork it.
git clone https://github.com/mojaloop/ml-reference-connectors.gitChange into the cloned directory
cd ml-reference-connectorsCreate a new core connector by running this command
./create.sh -c zm -n airtelOnce you have run this command, it will created a folder named airtel-zm-core-connector
This command also creates a new branch for the core connector. For this connector, it will be called ft/airtel-zm-core-connector. It will install npm dependencies, build and start the server. To stop the server from running, press CTRL + C
Do not commit directly to main. Only work on the core connector you created or are assigned to. This will prevent merge conflicts
Here are some commands to manage this repo of connectors.
Running pre push checks
npm run check:pre-pushInstalling dependencies in all connectors
npm run dep:install-allUpdating the dependencies in all connectors
npm run dep:update-allTo refactor the newly created core connector refer to the core connector template guide here.