-
Notifications
You must be signed in to change notification settings - Fork 24
Installing and Running Jekyll
Jekyll is a static website generator written in Ruby. It is also a key component of GitHub Pages upon with the CoApp.Org website is built. The connection between GitHub Pages and Jekyll is that each Pages-bound repo is piped through Jekyll automatically, allowing you to create a site and host it at GitHub. All of your posts and site changes are stored in your Git repo giving you the ability to sync your site on any machine, pull or push changes to the GitHub repo and publish posts remotely by pushing new posts in raw markdown form to GitHub.
- Download the jekyll zip file from: https://coappstorage.blob.core.windows.net/files/jekyll-in-a-box.zip
- Drop the files Python27 and Ruby192 on to Root (C:)
- Add the following directories to your PATH environment variable
c:\ruby192\bin c:\python27 c:\python27\scripts
> cd ~/coapp/coapp.org
> jekyll --auto --server
From your browser go to localhost:4000. The localhost:4000 site is a direct representation of the coapp.org website as it exists in your git reporsitory. You can review any changes you make in your repsitory before pushing them up to GitHub and the www.coapp.org website.