- Install .NET 7 SDK
- Setup a dev https certificate (instructions for wsl)
- Install .NET entity framework CLI
dotnet tool install --global dotnet-ef
- Add the dotnet tools folder to PATH
export PATH=$PATH:~/.dotnet/tools
- Run all migrations
dotnet ef database update
- Install nodejs (> 16.10)
- Install angular cli 14
npm install -g @angular/cli@14
- Run
npm i
- Install the https certificate
StudentAssets/generateTrustedSSL/server.crt
. On WSL copy the file to windows
- Run
dotnet watch run
in theAPI
folder - Run
ng serve
in theclient
folder