This change allows a user to set serveLocalFiles: true, which will also set up the LocalFileStorage adapter to check for local files in content/images/.
I needed this because I was migrating from a Ghost(Pro) installation. I ran wget --recursive to scrape the existing blog and download all the images, and then I committed these images into the repo that I push to Heroku. However, I want to use Cloudinary for any new posts that I write in the future.
I've tested this change on my Ghost blog running on Heroku, and everything works as expected.
Fixes #89
This change allows a user to set
serveLocalFiles: true
, which will also set up the LocalFileStorage adapter to check for local files incontent/images/
.I needed this because I was migrating from a Ghost(Pro) installation. I ran
wget --recursive
to scrape the existing blog and download all the images, and then I committed these images into the repo that I push to Heroku. However, I want to use Cloudinary for any new posts that I write in the future.I've tested this change on my Ghost blog running on Heroku, and everything works as expected.