.NET version 8 application manually created with the help of ChatGPT4.
Run the setup script to install SQL Server (Docker or native Linux):
./setup.shdotnet tool install --global dotnet-ef --version 8.*
make check
make migratemake build
make docker-buildmake test
For active development (with hot reload):
make dev
For production-like testing (without hot reload):
make run
docker run -d \
-p 8080:80 \
--name dotnetwebapp \
dotnetwebapp:latestmake migrate