-
Notifications
You must be signed in to change notification settings - Fork 120
github pages with tower
Lance Pollard edited this page Sep 24, 2012
·
1 revision
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 :)