Google app engine:Where is the datastore file stored on the local development server?

后端 未结 2 924
日久生厌
日久生厌 2020-12-20 17:53

I am working on a google app engine project using python. I want to know where does google app engine stores the datastore for the projects. I have tried but could not find

相关标签:
2条回答
  • 2020-12-20 18:58

    On my Windows machine the datastore file is stored in:

    C:\Documents and Settings\(yourusername)\Local Settings\Temp
    

    It'll have a .datastore extension.

    0 讨论(0)
  • 2020-12-20 18:58

    If you want to manage datastore file in your own directory, you can set the datastore path with command line arguments. See this document.

    --datastore_path=...
    The path to use for the local datastore data file. The server creates this file if it does not exist.

    0 讨论(0)
提交回复
热议问题