Skip to content

ThierrySans/CSCC09

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0020c77 · Nov 20, 2024
Nov 20, 2024
Aug 23, 2024
Dec 22, 2020
Apr 21, 2022
Nov 20, 2024
Dec 22, 2020
Oct 11, 2024
Sep 10, 2024
Sep 6, 2024
Dec 22, 2020
Apr 19, 2022
Jan 1, 2017
Jan 8, 2020
Oct 2, 2023
Sep 10, 2024
Dec 22, 2020
Jan 10, 2022

Repository files navigation

This is the source code for the CSCC09 course website.

Enjoy the course!

Development

0. Fork and clone the repo

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.

2. Use the latest version of Ruby

$ rvm get stable
$ rvm use ruby --install --default

3. Install Bundler (dependancy manager)

$ gem install bundler

4. Install dependencies

In the local repo directory:

$ bundle install

5. Serve the site locally

$ bundle exec jekyll serve

A local server will be started on http://localhost:4000.

Contributing

0. Ensure your branch is up to date

To pull changes from the original repo, set up a remote to do so:

$ git remote add upstream git@github.com:ThierrySans/CSCC09.git
$ git pull upstream master
$ git push origin master

1. Make a new branch

Generally, it's a good idea to branch out your changes and then push them.

$ git checkout -b branchname

2. Make changes

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/.

3. Push changes

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

4. Create a pull request

On GitHub, you can click the "New Pull Request" button, where you can then verify your changes and submit it for review.