I\'m trying to use the Django nonrel project for google app engine. I setup the test project as described here. I added a new folder to the project named \"static\" for my stati
app.yaml
have nothing to do with Django, but it does configures App Engine front-end. The answer depends on whether you want to serve static files with Django or the front-end (which is, well, cheaper and faster).
If you just "added" your - url: /static
mapping to the end, move it before the /.*
wildcard. As all mappings processed from top to bottom — first matching mapping wins.