Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data Viewer for AppEngine development server

The Google AppEngine development server simulates Google's backend database with an embedded database. It creates a file on you local disk that you can delete to clear the DB. Is there a tool that allows to browse and edit this data, similar to the Data Viewer that you get for deployed applications?

Clarification: I am asking about the Java toolkit, not the Python one.

like image 663
Thilo Avatar asked Apr 11 '09 03:04

Thilo


People also ask

What type of service model is Google Appengine using?

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.

Which logs can be accessed from App Engine UI?

Logs in Google Cloud Platform for App Engine, and all other Google Cloud Platform resources can be viewed in Stackdriver Logging.


3 Answers

Finally, data viewer comes with Google App Engine Java SDK version 1.2.2. It can be accessed at:

http://localhost:8080/_ah/admin

or

http://localhost:8888/_ah/admin

The same link as in Python version.

like image 84
Viktor Brešan Avatar answered Oct 20 '22 06:10

Viktor Brešan


On my system (sdk 1.2.8 I think) the dev server runs on port 8888. So the data viewer is at http://localhost:8888/_ah/admin

like image 22
Dan Benamy Avatar answered Oct 20 '22 04:10

Dan Benamy


You can find it at http://localhost:8080/_ah/admin. Looks bit different, but provides the same functionality (apart of some bugs).

But in the light of OP question amendment this answer is not relevant anymore.

like image 21
zgoda Avatar answered Oct 20 '22 04:10

zgoda