This is a project to help users find out more about whales and to encourage them to go and spot whales in the wild.
A database needs to be prepared, and all required dependencies need to be installed, before the project can be successfully run.
First, create a user with the following credentials and permissions:
- Username
whales
- Password
whales
- Able to login
Then, create a database called whales
, owned by the user created previously (also called whales
).
dotnet tool restore
npm install
dotnet restore
dotnet ef database update
npm install
To run the project locally, the backend and frontend should be started separately.
dotnet watch run
npm run dev