How to check local GAE datastore
I've been playing w开发者_StackOverflow中文版ith Google Appengine and want to check if the application is populating data in the local datastore. Where is this file located?
Rather than looking at the datastore file, you should probably just be visiting http://localhost:8002/datastore
where there's a datastore browser available. Replace 8002
with whatever the admin port is for your GAE project.
In the latest version, the datastore browser is found at
http://localhost:8888/_ah/admin
You can explicitly specify the datastore path with a command line argument: --datastore_path
精彩评论