Build docker:

$ ./compose.sh

Get in the container:

$ ./attach.sh

Once inside...

Go to the web project folder

$ cd SimpleToDo

Build the app

$ dotnet build

Update the database

$ dotnet ef database update

Run

$ dotnet run

Access in your browser

http://localhost:8000

Running the unit tests

$ dotnet test SimpleToDo.Repository.UnitTest/SimpleToDo.Repository.UnitTest.csproj
$ dotnet test SimpleToDo.Web.UnitTest/SimpleToDo.Web.UnitTest.csproj 

// No testes yet, maybe for a practical exercise!?

$ dotnet test SimpleToDo.Service.UnitTest/SimpleToDo.Service.UnitTest.csproj