Be sure to use a .NET 6.0 SDK. This project has been tested in a Fedora Linux
machine with dotnet installed (sudo dnf install dotnet-sdk-6.0
). Create the
database and build the app using:
dotnet tool restore
dotnet build
dotnet ef database update
dotnet run
If you want to run the app in Development mode (which includes Swagger data):
ASPNETCORE_ENVIRONMENT=Development dotnet run
There's a Makefile available if you want better support for this.
dotnet ef database drop
dotnet ef database update