The backend for my impending updated resume website. Additions to come soon (including API documentation).
- Dotnet Core
- EntityFramework Core
- PostgreSQL
- Add new migration -
dotnet ef --startup-project ../Web/ migrations add <MigrationName>
- Update database with migrations -
dotnet ef --startup-project ../Web/ database update
- Enable test debugging (in Visual Studio Code) -
export VSTEST_HOST_DEBUG=1
dotnet test Test.Unit/ && dotnet test Test.Integration/