8000 GitHub - kolypto/bible-commentary: Bible commentary Markdown and site. Russian + English
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kolypto/bible-commentary

Repository files navigation

Bible Commentary

Building locally

$ sudo apt install ruby-dev
$ bundle install

$ bundle exec jekyll serve -H 0.0.0.0 -lw

$ chrome http://localhost:4000

Docker

Alternatively, use Docker:

$ docker run --rm --volume="$PWD:/srv/jekyll:Z" --publish 4000:4000 jekyll/jekyll:3.8 jekyll serve

Also use:

  • jekyll build to build once
  • --volume="$PWD/vendor/bundle:/usr/local/bundle:Z" to cache vendors
0