EventualShop

(β˜… 423)

A state-of-the-art distributed system using Reactive DDD as uncertainty modeling, Event Storming as subdomain decomposition, Event Sourcing as an eventual persistence mechanism, CQRS, Async Projections, Microservices for individual deployable units, Event-driven Architecture for efficient integration, and Clean Architecture as domain-centric design

  • .dockerignore
  • .gitignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Directory.Build.props
  • docker-compose.Development.Infrastructure.yaml
  • docker-compose.Staging.Infrastructure.yaml
  • docker-compose.Staging.Services.yaml
  • EDA.CleanArch.DDD.CQRS.EventSourcing.sln.DotSettings
  • EventualShop.sln
  • filebeat.yml
  • global.json
  • LICENSE
  • nginx.conf
  • nuget.config
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/AntonioFalcaoJr/EventualShop

Downloads the entire project code from GitHub to your computer.

cd EventualShop

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose -f ./docker-compose.Development.Infrastructure.yaml up -d

Runs the command against the services defined in the compose file.

docker run -d \

Runs the built image as an actual container.

docker-compose \

Runs the command against the services defined in the compose file.

-f ./docker-compose.Staging.Infrastructure.yaml \

Runs the command against the services defined in the compose file.

-f ./docker-compose.Staging.Services.yaml \

Runs the command against the services defined in the compose file.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet ef migrations add "First Migration" -s .\WorkerService\ -p .\Infrastructure.EventStore\

Type this command into your terminal and run it.

βœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

// repository documentation