Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 938 Bytes

install.md

File metadata and controls

41 lines (24 loc) · 938 Bytes

Documentation

How to install

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     

See also: https://github.com/envygeeks/jekyll-docker