Skip to content

romanlapshuk/WheelThere

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README:

Usage steps:

  • npm install (installs dependencies from package.json)
  • brew install yarn
  • yarn add firebase
  • npm start (should start server)

Installing new packages

  • npm install package-name --save (will add to package.json)

Branching:

  • git checkout -b branchname
  • git branch (to check what branch you're in)
  • do all your coding in your branch
  • git pull origin master (pull changes people have potentially made, solves merge conflicts)
  • git merge master (merges master into your branch)
  • git checkout master (change to master branch)
  • git merge branchname (merge in the branch you were working on)
  • git push origin master (push to github)

Style:

  • We are using reactstrap which uses bootstrap
  • in order to use:
import { Alert } from 'reactstrap';
const Example = (props) => {
  return (
        <Alert color="success">
          This is a success alert — check it out!
        </Alert>
    );
  };

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •