Which credentials should I put in for Google App Engine BulkLoader at development server?

后端 未结 9 1895
[愿得一人]
[愿得一人] 2021-02-10 06:28

I would like to ask which kind of credentials do I need to put on for importing data using the Google App Engine BulkLoader class

appcfg.py upload_data --config_         


        
9条回答
  •  攒了一身酷
    2021-02-10 06:52

    I use this commands to transfer data from local to remote server. File's extension (json) is important. Framework: django-nonrel, os: Win7.

    manage.py dumpdata >dump.json
    manage.py remote loaddata dump.json
    

提交回复
热议问题