Skip to content

Instantly share code, notes, and snippets.

@ThomasHornschuh
Created April 26, 2020 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasHornschuh/19a99786e950ae44164c756e2bc60ce8 to your computer and use it in GitHub Desktop.
Save ThomasHornschuh/19a99786e950ae44164c756e2bc60ce8 to your computer and use it in GitHub Desktop.
Jekyll install and run quick start
#Setup
sudo apt-get install ruby-full
gem update bundler
sudo gem install bundler
#goto suitable directory (e.g $HOME/development)
mkdir jekyll
cd jekyll
git clone git@github.com:bonfireprocessor/bonfireprocessor.github.io.git
cd bonfireprocessor.github.io/
bundle install
#run - will start the website reachable on localhost:4000
bundle exec jekyll serve
#Run on all interfaces (to allow access from other computers):
bundle exec jekyll serve --host=0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment