Jader Dias
Jader Dias

Reputation: 90603

What is the admin url in an App Engine application?

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

Answers (3)

Niklas Rosencrantz
Niklas Rosencrantz

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

jbochi
jbochi

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

Anurag
Anurag

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

Related Questions