Our group will be cloning the Momentum Extension. The extension is a home page replacement on the Chrome browser. It can be accessed by opening a new window or tab.
To see the live demo 👉 https://chingu-voyage5.github.io/Geckos-Team-0/
- Time
- Greeting with Name
- Weather
- Todo
- Links for Bookmarking
- Randomized wallpaper
- Random quoutes
- Jon Maldia
- Nari Roh
- Kiran Shuaib
- To deploy in your local machine, clone or download this repo
cd
into the project directory- Run
yarn install
to add all the dependencies - Run
yarn start
to run the application
- Run
yarn build
to build the "build" folder - In your Chrome browser, navigate to chrome://extensions
- Make sure the "Developer mode" in the top right corner is turned on.
- Click "LOAD UNPACKED" and select the "build" folder
- Clone the repo -
$ git clone [email protected]:chingu-voyage5/Geckos-Team-0.git
- Switch to the development branch -
$ git checkout development
- Switch to your feature/working branch
- When creating a new branch:
$ git checkout -b feature-addTime-#12-jon
- this will create the branch and immediately switch to that branch
- When switching back to an existing branch:
$ git checkout feature-addTime-#12-jon
- When creating a new branch:
- Switch to development -
$ git checkout development
$ git pull origin development
from development before you start coding (all the time)- Switch to your feature/working branch
- Naming your branch (consists of 4 parts):
- issue type (feature, bug, style, refactor)
- issue name
- waffle card #
- your name
- Separate the 4 parts with dashes
- Use camel case for parts that are more than 2 words
- Example
feature-addTime-#12-jon
- Naming your branch (consists of 4 parts):
- Merge the new code -
$ git merge origin development
- Make commits often
- Push to GitHub when you are done with your feature -
$ git push origin <feature-branch>
- Go to Github, look for your pushed branch, and issue a Pull Request (PR)
- Select both team members as the reviewers
- Look for the PR
- Make sure that the branches selected are the development branch and a feature branch
- Compare the changes
- Fix any conflicts
- Merge if no conflict exists