How to serve Google Cloud Storage images?

后端 未结 1 1808
死守一世寂寞
死守一世寂寞 2020-12-21 06:03

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 t

1条回答
  •  感情败类
    2020-12-21 06:57

    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.

    0 讨论(0)
提交回复
热议问题