Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.75 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.75 KB

NOTE: This doesn't like git bash

Open a new console window so $path is updated

$ gem install jekyll bundler

If all is well this will run successfully

$ jekyll -v

Creates a new branch, with no history or contents, called gh-pages, and switches to the gh-pages branch

$ git checkout --orphan gh-pages

Removes the contents from your default branch from the working directory

$ git rm -rf *

Creates a Jekyll site in the current directory

$ jekyll new --skip-bundle .

Edit Gemfile and _config.yml

$ bundle

To run the site on localhost

$ bundle exec jekyll serve

To run the site on all local IPs

$ bundle exec jekyll serve --host=0.0.0.0

To Localhost (for idiots)