API Gateway for communication between the frontend and backend. Abstracts calls into user-friendly endpoints and adds a secure entrypoint layer on top of the individual microservices.
Run the gateway.
This uses appsettings.Docker.json
.
docker-compose up --build
Run the other services.
# /pakketservice/
docker-compose up --build
# /locatieservice/
docker-compose up --build
# /personeel-service/
docker-compose up --build
If you get the following error:
Network ipost-network
declared as external, but could not be found. Run the following:
docker network create ipost-network
Run the gateway with Visual Studio
or the .NET CLI
.
This uses appsettings.Development.json
.
Run the other services in Docker
.
# /pakketservice/
docker-compose up --build
# /locatieservice/
docker-compose up --build
# /personeel-service/
docker-compose up --build