Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 446 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 446 Bytes

Developing

git clone [email protected]:react-rally/www.git react-rally
cd react-rally
cd [YEAR]
npm install
npm start
open http://127.0.0.1:8080

Deploying

# Make your changes on master
git add .
git commit -m"[DESCRIPTION]"
git push

# Merge changes into gh-pages branch
git checkout gh-pages
git merge master

# Once your changes have been merged
cd [YEAR]
npm run deploy

# Move back to master
git checkout master