This website is based on the Documentation Jekyll theme. Jekyll, written in Ruby, is a "simple, blog-aware, static site generator".
The live version of this website is accessible via: https://h3abionet.github.io/H3ABionet-SOPs/. However, you may host a local copy of this repo and view from from your browser- which is helpful in proposing changes to the site (See following sections).
- Clone down the repository (
git clone https://github.com/h3abionet/H3ABionet-SOPs.git
) cd
into the cloned directory- Assuming Ruby is installed1, at the prompt, simply run
bundle
2. - Run
bundle exec jekyll serve
to start the preview server - Visit
localhost:4000
in your browser to preview the site
Feedback is most welcome, and so are contributions of any kind (e.g. reporting typos, issues, suggesting content, ... etc). Please see our contribution guide and the comprehensive contribution guide intended for those not very comfortable with git/jekyll
1: Jekyll is written in Ruby, and you need it installed for it to function (at least Ruby 2.1.0 is needed). On Ubuntu systems, you may run ruby -v
at the prompt to check Ruby and its installed version.
2: The Bundler may be installed using: gem install bundler
. On some Ubuntu 16.04 systems, installing the bundler as above (gem install bundler
), may give errors of the form: ERROR: While executing gem ... (Gem::FilePermissionError)
. Some useful pointers for handling this case can be found in the stack overflow entries here