1) Cloning the repos:
You need to clone the repositories.
2) Installing jekyll:
- You must install ruby language.
Maybe you need to run as root
apt-get install ruby-dev
- Install Jekyll's gem
gem install jekyll
.
3) Running Local:
- Clone the repository (
git clone https://github.com/devfuria/devfuria.com.br.git
). - Run the jekyll
jekyll server
and see the result at http://localhost:4000/.
Docker:
In case you need a Docker image...
docker run --rm \
--volume="$PWD:/srv/jekyll" \
--publish [::1]:4000:4000 \
jekyll/jekyll \
jekyll serve
In one line:
docker run --rm --volume="$PWD:/srv/jekyll" --publish [::1]:4000:4000 jekyll/jekyll jekyll serve