Back-end application of a food storage management system.
When cloning this repository one should use the --recurse-submodules
to automatically fetch the frontend repository as well.
git clone --recurse-submodules https://github.com/pedromsilvapt/miei-foodss-backend ./backend/
When the project is cloned, head into the backend/foodss-backend/ClientApp
folder and install the required dependencies
cd backend/foodss-backend/ClientApp
npm install
To launch the server, in the root project folder, simply run the command
dotnet run
To update the frontend, run the command
git submodule update --remote
WARNING: This will erase any local changes you've made inside the
ClientApp/
folder. To preserve them try using the--merge
option when updating the submodule