How To Serve Google Cloud Storage Images?
I want google.appengine.ext.blobstore and google.appengine.api.images to work outside of App Engine. Do these modules require App Engine in order to work? I want to create public b
Solution 1:
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.
Post a Comment for "How To Serve Google Cloud Storage Images?"