dotnet-outdated -t -td 5This creates a local PowerShell session with the environment variables in the .env file and starts
the Rider IDE.
./tools/Start-Development.ps1
rider .To exit the development environment, close the Rider IDE and run the following command in the PowerShell session.
exit./tools/Start-Application.ps1If starting the application from a development environment session, specify the -UseCurrentEnvironment parameter
to use current environment variables.
./tools/Start-Application.ps1 -UseCurrentEnvironmentUse the DatabaseCli.exe tool to create or drop ToDo WebApi databases.
dotnet run --project ./src/DatabaseCli/ -- database create -c "$env:SBS_TEST_SERVER_POSTGRES;Database=<DATABASE>" -fThe -f option will drop the database if it already exists.
dotnet run --project ./src/DatabaseCli/ -- database drop -c "$env:SBS_TEST_SERVER_POSTGRES;Database=<DATABASE>"