Reputation: 90603
I once used a page automatically created by App Engine SDK to view the database contents and other info, but I lost the URL. Do you know it? Does it work in production?
Upvotes: 3
Views: 2191
Reputation: 26681
In case you found this answer and you're using App Engine SDK 1.7.6 or higher, the default URL has changed from localhost:8080/_ah/admin
to localhost:8000
.
Upvotes: 1
Reputation: 29654
The development console url is http://localhost:8080/_ah/admin/.
It does not work in production, but you can use GAE's dashboard in this case: https://appengine.google.com/.
Dev server's documentation is available here.
Upvotes: 8
Reputation: 141919
It's http://appengine.google.com/ if you're not using Google Apps.
Otherwise, it's http://appengine.google.com/a/<your-domain>
There is a section on Data there that includes the Datastore viewer, indexes, etc..
Upvotes: 3