Skip to content

crane-style/system-design-capstone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

supernova

Building and running on localhost

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

Running

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

Git Workflow

Check Status Through

git status
  1. 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>
  1. 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
  1. Pull Changes from Remote Master Branch to Local Feature Branch
git pull origin master
  1. 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>
  1. Create Pull Request on Github

  2. Merge Code with Team

  3. Pull Down Changes From Remote Master to Local Master

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published