This repository has been archived by the owner on Mar 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Developer Crash Course
Jeremy Fleischman edited this page May 23, 2017
·
8 revisions
First, get familiar with Git, forks, and pull requests (PRs). Do you know the difference between Git and GitHub? If any of this is iffy for you, the following resources may help:
- https://help.github.com/articles/set-up-git/
- https://help.github.com/articles/working-with-forks/
- https://help.github.com/articles/about-pull-requests/
If you run into trouble with the following instructions, consult this very similar GitHub documentation.
- Make a fork of the cubingusa/org repo if you have not already done so.
- Install the appropriate version of Ruby. You can see which version of Ruby we use in our travis configuration.
-
gem install bundler
- Install Bundler if you do not already have it. -
bundle install
- Install dependencies. -
bundle exec jekyll serve
- This will build the website and start a webserver, accessible at http://127.0.0.1:4000/. - Create a PR with your changes.
- Merge your PR. Travis will take care of automatically building and deploying your changes to the
gh-pages
branch.