Skip to content

codeontology/codeontology.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6a30e04 · Jun 27, 2017

History

64 Commits
May 13, 2017
Jun 27, 2017
May 17, 2017
Mar 7, 2016
Mar 7, 2016
Mar 7, 2016
Apr 20, 2016
Mar 5, 2016
Jun 26, 2017
Mar 7, 2016
May 13, 2017
Mar 7, 2016
Mar 29, 2016
Mar 5, 2016
Mar 30, 2016
Mar 13, 2016
Jun 26, 2017
Jun 27, 2017
May 13, 2017
Jun 27, 2017
Apr 20, 2016
Mar 7, 2016
Jun 27, 2017
Mar 5, 2016
Jun 27, 2017
Jun 27, 2017

Repository files navigation

CodeOntology website

This repository contains the sources of the CodeOntology website, hosted by GitHub Pages. In order to run the website locally, install jekyll and download the repository as shown below.

Install Jekyll on Ubuntu

As of March 2016, since Jekyll requires Ruby 2.0, the followings are needed on Ubuntu (which by default installs ruby 1.9):

sudo apt-get install ruby2.0 ruby2-0-dev
sudo mv /usr/bin/ruby /usr/bin/ruby1.9
sudo mv /usr/bin/gem /usr/bin/gem1.9
sudo ln -s /usr/bin/ruby2.0 /usr/bin/ruby
sudo ln -s /usr/bin/gem2.0 /usr/bin/gem
sudo gem install jekyll

See the official Jekyll site for updates.

Download the repository and run Jekyll

Now that Jekyll is installed on your machine, run the following:

git clone https://github.com/codeontology/codeontology.github.io.git
cd codeontology.github.io
jekyll server

Now go to http://127.0.0.1:4000 to see the website running on your machine.