What does upload in Google AppEngine app.yaml do?

Posted by Great Turtle on Stack Overflow See other posts from Stack Overflow or by Great Turtle
Published on 2010-04-13T22:36:16Z Indexed on 2010/04/13 22:43 UTC
Read the original article Hit count: 252

Filed under:
|

I am going through the various Google AppEngine tutorials sometimes, and I just noticed something odd in a StackOverflow question about favicon.ico - specifically this question: http://stackoverflow.com/questions/887328/favicon-ico-not-found-error-in-app-engine

- url: /favicon.ico
static_files: media/img/favicon.ico
upload: media/img/favicon.ico

- url: /robots.txt
static_files: media/robots.txt
upload: media/robots.txt

All of the posters included an "upload:" line in their app.yaml definitions The application appears to work the same with or without the upload: line, and I have not seen any mention of it in the official documentation.

Where is it used, or what difference does it make if this line is included or not?

© Stack Overflow or respective owner

Related posts about google-app-engine

Related posts about yaml