Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine database viewer/browser?

Does Google App Engine offer any kind of database browser/viewer tool which can show CURRENT data? 1-day late database view was offered, however, it's not enough.

like image 985
eonil Avatar asked Mar 17 '11 06:03

eonil


People also ask

What is Google App Engine used for?

App Engine is a fully managed, serverless platform for developing and hosting web applications at scale. You can choose from several popular languages, libraries, and frameworks to develop your apps, and then let App Engine take care of provisioning servers and scaling your app instances based on demand.

What is the difference between App Engine and Cloud run?

While App Engine supports many different services within a single application, Cloud Functions support individualized services. It's an important detail when comparing Google App Engine vs Cloud Functions. If your requirements don't include multiple services then Cloud Functions is a great choice.


4 Answers

appengine.google.com has its own datastore viewer. where you can login and view the complete datastore for all your applications. In the development server, appengine SDK emulates the same. You can access it like http://localhost:8080/_ah/admin

like image 81
Abdul Kader Avatar answered Oct 20 '22 08:10

Abdul Kader


Datastore on the appengine is accessible at, https://console.developers.google.com/datastore/entities/query?project=yourappid (replace yourappid appropriately)

This will be the current data.

like image 35
aldrin Avatar answered Oct 20 '22 06:10

aldrin


I think that datastore viewer in development server can be accessed through http://localhost:8888/_ah/admin instead.

like image 39
rukbotto Avatar answered Oct 20 '22 06:10

rukbotto


If you're using GoogleAppEngineLauncher, you can see Admin Port and the Port. Go to the Admin Port to access the datastore.

like image 28
beginning Avatar answered Oct 20 '22 06:10

beginning