/LolaRun

robot/drone delivery

Primary LanguageHTML

Web

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/

Firebase info

Account: packageprojectflag@gmail.com

Password: packageprojectflag!1

https://console.firebase.google.com/

Git workflow

Make sure you're on master

git checkout master

git fetch origin

Screen Shot 2019-06-22 at 11 53 49 AM

Create a new branch to work on your issue, ideally your branch name should be the same as the topic of your issue Screen Shot 2019-06-22 at 12 03 01 PM

git checkout -b issue-topic

Use git branch to make sure you're on the right branch Screen Shot 2019-06-22 at 11 55 53 AM

Make your changes

Add and commit

git add changed_files

git commit -m "description of your commit" Screen Shot 2019-06-22 at 12 07 41 PM

Push the branch

git push -u origin issue-topic

Open a pull request to merge to master