Normally to host a website on app-engine, I can put all my image files in a static directory, say img
, and then in the yaml
file have
- url: /img static_dir: img
Such a usage makes sense when the images are for displaying in my website itself.
But now I have an endpoint api. For my case, I need to store some images in my backend for my users to access. Instead of putting them in static directory, I want to put them in the blobstore and use blob serving url to serve them. Is there a way to deploy images to the blobstore and then get the serving urls?