Skip to content
stevecorona edited this page Oct 29, 2012 · 1 revision

The current Amazon S3 deployment inside of Ruhoh doesn't work (yet), but you can easily use the jekyll-s3 gem to deploy your ruhoh site to Amazon S3.

First, you need to symlink _site to compiled. I also add it to my .gitignore file.

cd ~/your-ruhoh-dir
ln -s compiled _site

Next, create a _jekyll_s3.yml file. It's also smart to add this to .gitignore.

s3_id: 123567890
s3_secret: abcdefghijklmaopqrstuvwxyz
s3_bucket: yours3bucket

Compile and deploy your site!

cd ~/your-ruhoh-dir
ruhoh compile
jekyll-s3
Clone this wiki locally