Getting started with this sample, you'll need to run the following .NET commands.
Restore the NuGet packages
dotnet restore
Install the .NET EF Core tools
dotnet tool restore
Run the database migrations to create the SQLite database.
dotnet ef database update --project ChinookHTMX
To run the app, use the following command:
dotnet run
Then navigate to http://localhost:5288
Thanks to khalidabuhakmeh for getting this to work with SQLite.