This is the source code for the CSCC09 Spring 2019 course website.
The site is built using Jekyll and hosted on GitHub Pages. Code is based on @CSC309-Fall-2016/CSC309-Fall-2016.github.io.
Enjoy the course!
From GitHub, fork this repo to your account, then clone it to your local machine.
1. Install RVM
$ gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
$ curl -sSL https://get.rvm.io | bash -s stable
You might need to source the RVM config file. Read the instructions on screen carefully.
$ rvm get stable
$ rvm use ruby --install --default
$ 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 [email protected]:ThierrySans/CSCC09.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.