Jekyll website for cevo.com.au
- The theme used here is http://elbe.blahlab.com/
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/.
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
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
To run the server with the correct URL's and base paths, you will need to serve the content from
$ jekyll serve
$ 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.