This is the source code for the OSE website. Edit the respective *.md
files directly.
This website uses Jekyll.
For official guides to install Jekyll, see Installation | Jekyll • Simple, blog-aware, static sites.
For GitHub's guide to locally build and test the website, see Testing your GitHub Pages site locally with Jekyll - GitHub Docs.
The basic steps are:
- Clone this repository to local machine.
- Run
jekyll --version
to make sure you have jekyll installed correctly. - Run
bundle install
to make sure you have all the dependencies installed.- Alternatively, if file
Gemfile.lock
already exists, runbundle update
.
- Alternatively, if file
- Run
bundle exec jekyll serve --livereload --safe
to start local server.- Note: you should access the
Server address
(for example,http://127.0.0.1:4000
) instead ofLiveReload address
. - The
safe
flag is necessary since GitHub Pages does not allow non-whitelisted plugins.
- Note: you should access the