This is the source code for the CSCC01 course website.
Enjoy the course!
From GitHub, fork this repo to your account, then clone it to your local machine.
1. Install RVM
$ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
$ curl -sSL https://get.rvm.io | bash -s stable
You might need to source the RVM config file. Read the instructions on screen carefully.
You can also alternatively use rbenv to manage your Ruby environment.
$ rvm --default use 2.3.1
$ gem install bundler
In the local repo directory:
$ bundle install
$ bundle exec jekyll serve
A local server will be started on http://localhost:4000.
To pull changes from the original repo, set up a remote to do so:
$ git remote add upstream git@github.com:ThierrySans/CSCC01.git
$ git pull upstream master
$ git push origin master
Generally, it's a good idea to branch out your changes and then push them.
$ git checkout -b branchname
You can make changes anywhere in the posts/layouts. This might be a good place to start if you're new to Jekyll: https://jekyllrb.com/docs/.
The changes made should reload live on your local server. Once you're satisfied with your changes, push the new branch to your forked repo.
$ git push origin branchname
On GitHub, you can click the "New Pull Request" button, where you can then verify your changes and submit it for review.