Go to "web" folder
Run "npm install" in command-line window
Run "npm start" in command-line window
Open browser and go to http://localhost:3000/
Account: [email protected]
Password: packageprojectflag!1
https://console.firebase.google.com/
Make sure you're on master
git checkout master
git fetch origin
Create a new branch to work on your issue, ideally your branch name should be the same as the topic of your issue
git checkout -b issue-topic
Use git branch to make sure you're on the right branch
Make your changes
Add and commit
git add changed_files
git commit -m "description of your commit"
Push the branch
git push -u origin issue-topic
Open a pull request to merge to master