LaunchPad version 2.0 - site redesign
# Install dependencies
npm install
# Serve on localhost:3000
npm start
- https://github.com/elsewhencode/project-guidelines Project Guidelines
- https://help.github.com/
- https://guides.github.com/introduction/flow/
- https://services.github.com/on-demand/downloads/github-git-cheat-sheet/
- https://guides.github.com/introduction/git-handbook/
- Go to merging branch and call
git fetch
to ensure branch is up to date with receiving branch. - Ensure that HEAD is pointing to the correct merge-receiving branch; execute
git checkout <receiving branch>
(git checkout master
) - Make sure the receiving branch and the merging branch are up-to-date with the latest remote changes; execute
git pull
on the receiving (master) branch. - Execute
git merge <branch name>
where 'branch name' is the merging branch.
- https://css-tricks.com/bem-101/ - Naming convention
- https://www.toptal.com/front-end/frontend-clean-code-guide - clean front-end code
- https://en.bem.info/methodology/quick-start/ - BEM methodology
- http://getbem.com/introduction/ - Simple BEM Guide
- https://css-tricks.com/snippets/css/a-guide-to-flexbox/ - Complete Flexbox Guide
- https://css-tricks.com/snippets/css/complete-guide-grid/ - Complete Grid Guide
- https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488 - Media Queries for Various Screens
- https://github.com/i0natan/nodebestpractices/blob/master/README.md - Node best practices