Skip to content

github pages with tower

Lance Pollard edited this page Sep 24, 2012 · 1 revision

GitHub Pages for Tower

Add top-level Jekyll _config.yml file pointing to public directory:

safe:        false
auto:        false
server:      false

source:      ./public
destination: ./_site

future:      true
lsi:         false
pygments:    true
markdown:    maruku

This will copy all of your files from ./public to ./_site, which GitHub will route to your project url:

http://username.github.com/project-name http://username.github.com/project-name/about http://username.github.com/project-name/javascripts/application.js

That's clean :)

Clone this wiki locally