I’m not a fan of running the full server on my desktop. The server slows to a crawl after several minutes of running. I have created a test app out of one of my 10 I’m allowed to create. To test my code I simple use the appcfg.py and load the new code to the server. This only takes a few seconds and works really well. However, I ran into an issue with this approach today. The index.yaml does not update with indexes. The development environment updates this file with index you app will use as you test it out. If you take the same approach you will need to add lines like the ones I’ve listed:
indexes:
- kind: TheList
properties:
– name: created
direction: desc
You must add this above the #AUTOGENERATED statement in the file. Or run your program using the SDK and fully test it out.