Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a local Google App Engine data viewer?

Tags:

I want to use google's online GAE data viewer offline... Is there some bunch of python code to display all my local data and even schema?

like image 290
yusuf Avatar asked Mar 08 '09 21:03

yusuf


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.

How do I find App Engine location?

If you already created an App Engine application, you can view its region by doing one of the following: Run the gcloud app describe command. Open the App Engine Dashboard in the Google Cloud console. The region appears near the top of the page.


1 Answers

Yes, go to http://localhost:8000/_ah/admin (supposing you're running your local instance with dev_appserver.py).

NOTE: when the app is being deployed locally, it logs to which port the admin page is being binded

like image 157
nilton Avatar answered Oct 07 '22 23:10

nilton