CommanderAPI
.NET Core 3.1 REST API using EntityFrameworkCore and SQL Server, based on this video tutorial by Les Jackson
Getting started
Local
- Run locally with
dotnet run
- Run migrations with
dotnet ef database update
(if EF CLI installed globally), or install EF CLI withdotnet tool restore
and thendotnet dotnet-ef database update
Docker
- Spin up containers with
docker-compose up -d