cobyism / ghost-on-heroku

One-button Heroku deploy for the Ghost blogging platform.
MIT License
743 stars 686 forks source link

Adding Google Drive file storage as an option #182

Open nhatminhbeo opened 4 years ago

nhatminhbeo commented 4 years ago

I added Google Drive file storage deployment code since I didn't want to pay for AWS S3. GDrive offers 15GB of free storage.

shrmaky commented 4 years ago

Hi @nhatminhbeo are you able to test the s3 storage, for me this is causing a problem -

Passing env variable in package.json

    "start": "S3_ACCESS_KEY_ID=AKIA76EH S3_ACCESS_SECRET_KEY=Fo/BJRMN4mMfl S3_BUCKET_NAME=test S3_BUCKET_REGION=eu-west-1 S3_ASSET_HOST_URL=test.com node server.js",

In config.development.json

"storage": {
    "active": "s3"
  },

When i run yarn start it throws me an error tried..putting s3 folder both in node_modules as well as in adapters.storage

image