Skip to content

nonspecialist/cevoaustralia.github.io

Repository files navigation

Cevo Website

Jekyll website for cevo.com.au

Codeship Status for cevoaustralia/cevoaustralia.github.io

How to develop (docker)

If you don't want to install Ruby and instead test the site in docker container:

docker-compose build
docker-compose up

This should build the docker image and run the server at http://localhost:4000/.

How to develop

You need to have:

  • a working Ruby environment
  • this repository checked out

The site is developed as a set of static resources, and assembled into the resultant website through the use of Jekyll

How to install dependencies

The depenencies of the build have been included in a Gemfile, use bundler to

$ bundle install

If you are running in an rbenv you will need to run rehash for your commands to be exported to your shell

$ rbenv rehash

How to serve the site locally

To run the server with the correct URL's and base paths, you will need to serve the content from

$ jekyll serve

How to build the site

$ jekyll build
# => The current folder will be generated into ./_site

$ jekyll build --watch
# => The current folder will be generated into ./_site,
#    watched for changes, and regenerated automatically.