views:

70

answers:

3

How can I find where my local development datastore is located? I am using the Python SDK and Linux.

+2  A: 

I think it depends on if you got Java or Python SDK.

For Python, here's what the instructions say from Google: "The web server prints the location of the datastore file it is using to the terminal when it starts up. You can make a copy of the file, then restore them later to reset the datastore to a known state. Be sure to restart the web server after replacing the datastore file.

To change the location used for the datastore file, use the --datastore_path option:

dev_appserver.py --datastore_path=/tmp/myapp_datastore myapp"

more info here: http://code.google.com/appengine/docs/python/tools/devserver.html

Sologoub
+1  A: 

For Python u can make access to datastore admin interface path:' /_ah/' or

add the app handler to app.yaml

- url: /admin/.*
  script: $PYTHON_LIB/google/appengine/ext/admin
  login: admin

and access it at /admin/

sandeep koduri
+2  A: 

Im using windows 7 with the python sdk. My local datastore is located at C:\Users[username]\AppData\Local\Temp\dev_appserver.datastore

Kenan