Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 2.04 KB

README.md

File metadata and controls

63 lines (41 loc) · 2.04 KB

Project Atelier

A front-end team project to build an e-commerce product details page.

Contributors

Tim Mussack - Questions & Answers
Joe Lin - Ratings & Reviews
Darrien Willig - Product Overview

Technologies

JavaScript React Node Express Axios

Product Overview Demo

Questions & Answers Demo

Ratings & Reviews Demo

Dark Mode Demo

Setup

Fork or clone this repo onto your local machine first

Install dependencies:

npm install

Start your server and client

npm run server-dev
npm run client-dev

Git Work Flow

Create your own branch:

git checkout -b <branchName>

Update your repo daily or whenever a change to the main branch is made:

git pull origin main

If you get a divergent branch error:

git config pull.rebase false

Push changes only to your branch:

git push origin <branchName>

Add tests for any new code you've written and make sure they pass before submitting a pull request to the main branch. All pull requests must be reviewed by at least 1 other team member before being merged.