dotnet WebApi/bin/Debug/net6.0/WebApi.dll
or with docker
docker build -t web-api .
docker run -d -p 8000:4444 web-api
- We have
teams
, whereemployes
are doing differenttasks
. - Every team have a
team lead
and every task is contained insprint
(time span in which employees have tasks to complete). - Team lead have to generate
report
after each sprint where all employee'stask changes
during current sprint will be.
-
Domain layer
- Rich Domain Model
-
Data access layer
- EF Core 6
- SQLite
- Transactions
-
Services layer
- Async/Await
- LINQ
-
WebApi layer
- AutoMapper
- MiddleWares (i.e. Caching && Simple Authorization)
- Swagger
-
Application
is hosted onAzure server
- Beautiful documentation in README.md :)
Try out my application here