Skip to content

A .NET 7 based APIs built by following Clean Architecture, CQRS, DDD

Notifications You must be signed in to change notification settings

iamarifdev/todo-clean-architecture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Support

To run the application in docker, run from solution directory

Detached mode
docker-compose up --build -d
Foreground mode
docker-compose up --build
To stop the application
docker-compose down

Migration

To add migration, run from solution directory

dotnet ef migrations add Initial --project src/TodoCQRS.Infrastructure --startup-project src/TodoCQRS.API

To remove migrations, run from solution directory

dotnet ef migrations remove --project src/TodoCQRS.Infrastructure --startup-project src/TodoCQRS.API

To update database, run from solution directory

dotnet ef database update --startup-project src/TodoCQRS.API

To run the tests

dotnet test

Releases

No releases published

Packages

No packages published