Skip to content

Latest commit

 

History

History
72 lines (51 loc) · 1.19 KB

README.md

File metadata and controls

72 lines (51 loc) · 1.19 KB

Mifos Core Connector

Git Releases CircleCI

Overview

A connector that facilitates payments between a Mojaloop Connector (SDK Scheme Adapter) and a Core Banking system

This project is still in development

Running the project

To run the project clone the repository into your local machine

git clone https://github.com/mojaloop/mifos-core-connector.git

Change directory into the project folder

cd mifos-core-connector

Set node version

nvm use

Install dependencies

npm install

Build

npm run build

Run

npm run start

Functional Tests

npm run test:functional

Unit Tests

npm run test:unit

Build and Run

npm run start:build

Run with Docker

docker compose -f ./test/func/docker-compose.yml up -d

Tear down Docker

docker compose -f ./test/func/docker-compose.yml down