First install dependencies:
npm install
To run in hot module reloading mode:
npm start
To create a production build (for deployment):
npm run build-prod
To create a development build:
npm run build-dev
Open the file dist/index.html
in your browser
Tech Stack
- React
- react-router
- Recoil
- React Bootstrap
- Moment.js
- url-loader
- Webpack
- Babel
- Jest
- Enzyme
- Axios
Check Status Through
git status
- Pull Down Changes From Master and Create New Local Feature Branch
git checkout master
git pull origin master
git checkout -b <branchname>
OR, Checkout Existing Feature Branch
git checkout <branchname>
- Make and Commit Your File Changes
AND, If You Realize You’ve Accidentally Made Your Changes on Master
git stash
git checkout -b <branchname> OR, git checkout <branchname>
git stash pop
- Pull Changes from Remote Master Branch to Local Feature Branch
git pull origin master
- Create and Push Changes to Remote Feature Branch if Need Be
git push -u origin <branchname>
OR, Push Changes to Existing Remote Feature Branch
git push origin <branchname>
-
Create Pull Request on Github
-
Merge Code with Team
-
Pull Down Changes From Remote Master to Local Master