This file aims to help troubleshoot issues when running a local instance of the project.
Back-End common issues. The titles below are read from the console logging of the application.
This error happens when the database has not been migrated beforehand.
To resolve this issue, follow the steps in README.md on how to run the application.
This error means the back-end could not reach Azurite (the Azure Blob Storage emulator).
To resolve this issue, follow the steps in README.md on how to run Azurite.
Front-End common issues. Titles below are read from the DevTools console of the web browser.
If you see a message
This error means you haven't setup correctly the local certificate for HTTPS.
To resolve this issue, you can either try to add correctly the development certificate by using the following command:
dotnet dev-certs https --trust
or if this doens't work, open your browser, go to https://localhost:5001/swagger.
There should be a warning page from your browser saying "Your connection isn't private". Click "Advanced" and "Continue to localhost (unsecure)".
The steps to ignore the security warning may vary depending on your browser.