Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check local GAE datastore

I've been playing with Google Appengine and want to check if the application is populating data in the local datastore. Where is this file located?

like image 982
Brig Avatar asked Feb 16 '11 19:02

Brig


People also ask

How do I use Google App Engine locally?

Running your application locallySelect File > Open to open the project you want to run. Browse to the directory containing your project. Select Tools > Cloud Code > App Engine Run on a local App Engine Standard dev server.

What is the Datastore used by Google App Engine?

Datastore is a NoSQL document database built for automatic scaling, high performance, and ease of application development. Datastore features include: Atomic transactions.


2 Answers

In the latest version, the datastore browser is found at

http://localhost:8888/_ah/admin
like image 75
johsin18 Avatar answered Oct 11 '22 13:10

johsin18


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.

like image 23
Wooble Avatar answered Oct 11 '22 12:10

Wooble