/Inflow-micro

Primary LanguageC#MIT LicenseMIT

Inflow

About

Inflow is a simple virtual payments app based on microservices. The overall architecture is mostly built using event-driven approach.

How to start the solution?

Start the infrastructure using Docker:

cd compose
docker-compose -f infrastructure.yml build
docker-compose -f infrastructure.yml up -d

Start the separated services located under src directory via dotnet run or with your favorite IDE or by using Tye:

tye run

The services can be also started with Docker:

cd compose
docker-compose -f services.yml build
docker-compose -f services.yml up -d