greyblake / blogo

Mountable blog engine for Ruby on Rails
MIT License
105 stars 55 forks source link

Save images on AWS? #24

Open rept opened 9 years ago

rept commented 9 years ago

Is there a way to configure blogo to not try to save the images locally (in my case they would be gone after an update of the site), but save them to S3 or something?

greyblake commented 9 years ago

Short answer currently: currenty no.

What you can do by now is not to remove public/system directory after deploy. To achive this if use Capistrano make sure you have something like this in you deploy.rb:

set :linked_dirs, %w{ public/system}

I'll keep the PR open, S3 integration is a good thing to have.