npm install
npm run build
npm run start
- clone the repo and checkout to "dev-{name}"
- Choose one "To-do" and move it to "In-progress"
- Edit code
- Run the following command (If you want to update your branch)
git add -A
git status (optional, to check what files are added)
git commit -m "{commit msg}"
git push origin dev-{name}
- If you have done one of the "To-do", move the card to "Done"
- client side: client folder
- src/api -> implement calls to server
- src/components -> build front end of the website
- src/utilities -> helper files/functions
- server side: server folder
- IN PROGRESS