Modular Monolith Backend developed using Domain-Driven Design, CQRS, Postgres, EF Core, MassTransit, custom outbox implementation, and more. This is a backend for a demonstration application "TeamUp" (team managment application) as part of my Master's Thesis at BUT FIT.
# with dotnet 8 sdk
dotnet run --project src/TeamUp.Bootstrapper
By default, the application launches at https://localhost:7089 by default, to change the port, change the applicationUrl
value in src/TeamUp.Bootstrapper/Properties/launchSettings.json
.
By default, the application expects postgres database instance running at localhost (port 5432), and logs in using postgres
username and devpass
password. To change that, change connection string in Database
section in src/TeamUp.Bootstrapper/appsettings.json
.
Such instance can be launched using the scripts/rundb.ps1 script.
By default, the application expects rabbitmq instance running at localhost (port 5672). To change that, change connection string in RabbitMq
section in src/TeamUp.Bootstrapper/appsettings.json
.
Such instance can be launched using the scripts/runbus.ps1 script.
By default, the application expects the client app (frontend) at https://localhost:7229, to change that, change the Url
value in Client
section in src/TeamUp.Bootstrapper/appsettings.json
.