Where is my local App Engine datastore?

前端 未结 10 2202
南旧
南旧 2020-12-16 01:02

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

10条回答
  •  甜味超标
    2020-12-16 01:21

    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/

提交回复
热议问题