Alex
Alex

Reputation: 7612

Is there a datastore viewer in google app engine launcher?

Is there a datastore viewer in Google App Engine Launcher? Something similar to the Datastore Viewer that can be found within the GAE website?

Thanks.

Upvotes: 0

Views: 1401

Answers (3)

Tyvain
Tyvain

Reputation: 2760

Under Eclipse there is plugin: http://appwrench.onpositive.com/index.page

Upvotes: 0

Nick Johnson
Nick Johnson

Reputation: 101149

Yes. Click on 'SDK console' when your app is running; this is the equivalent to going to /_ah/admin as suggested by Adam.

Upvotes: 2

Adam Crossland
Adam Crossland

Reputation: 14213

There isn't a datastore viewer that is specifically part of the Launcher, but the dev server provides an admin console that has a datastore viewer. While dev_appserver.py (or whatever the Java equivalent is) is running, go to /_ah/admin in your browser.

Upvotes: 7

Related Questions