[Django]-How to serve Google Cloud Storage images?

4👍

The blobstore and images APIs are available only within the App Engine runtime environment. To run them inside compute engine you can:

  • Run them inside Managed VMs (the GAE runtime environment on GCE)

  • Run them on your own infrastructure or GCE using a GAE API emulator (such as AppScale)

  • Use public APIs (such as Google Cloud Storage) instead

Some App Engine services (such as Datastore) now also expose public APIs that you can use from GCE.

Leave a comment