A backend API using nodeJS and express to allow users on the meal-planner frontend app to save favorite recipes. Uses the following:
- NodeJS
- Express
- knex
- SQLite
Follow these steps each time you start working:
- Make sure you are synced with the master/main branch
git checkout main
git pull origin main
git checkout <feature branch>
git merge main
git push
- Create a new branch in your project fork for the changes you want to make
git checkout -b myfixes
-
Commit regularly on your working branch
-
Git push once all changes have been committed
-
Merge request in GitHub and fix any potential merge conflicts. Make sure to delete your working branch (prompt given on GitHub)