Backoffice login

Should mitigate some of the local dev hurdles?

Run dotnet dev-certs https to generate or check the self-signed localhost developer certificate for HTTPS in ASP.NET Core apps. Use dotnet dev-certs https --trust to trust it on your machine, avoiding browser warnings during local development.learn.microsoft+1

Command Breakdown

  • dotnet dev-certs https: Checks for an existing certificate; creates one if absent (in CurrentUser\My store).learn.microsoft+1
  • dotnet dev-certs https --trust: Adds the certificate to trusted roots (may prompt for confirmation).learn.microsoft+1
  • dotnet dev-certs https --clean: Removes all dev certificates if needed before reinstalling.learn.microsoft+1