-2

I prebuild some static content for a web app which I intent to store on GAE. It has more than 10k files thus I'd like to upload that static content to the blobstore and use http to refernce to my static content from appengine-web.xml.

The problem is that the uploaded files are being renamed to some hash key as I understood. How can I approach the solution using GAE?

Vitali Pom
  • 602
  • 1
  • 8
  • 29

1 Answers1

3

You should use Cloud Storage - it looks that Blobstore will be deprecated at some point.

You can upload your files to the Cloud Storage bucket using a dev console or, a better option for that many files, a gsutil command line tool with -m option. All files will retain their names.

Andrei Volgin
  • 40,755
  • 6
  • 49
  • 58