如何从固定装置远程加载数据
使用 GAE 上的 Django-nonrel,部署后如何将固定装置加载到服务器?我可以通过本地方式做到这一点
python manage.py loaddata 夹具名称
如何在 appspot.com 上已部署的应用程序上执行此操作呢?
With Django-nonrel on GAE, how do I do I load in a fixture to the server after deploying? I'm able to do it locallay via
python manage.py loaddata fixturename
But how can I do it on a deployed app that is already on appspot.com?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信答案是
加上一个“远程”词。我已经测试过(在我输入此内容之前大约五分钟)。它会提示您输入 Gmail 帐户和密码。
您还需要在 app.yaml 中启用remote_api(如果我没有记错的话)
我希望它能起作用。
I believe the answer is
with an additional 'remote' word. I've tested that (about five minute before I type this). It will prompt for your gmail account and password.
You also need to enable remote_api in app.yaml (if i'm not mistaken)
I hope that work.
您应该考虑使用 appengine 批量加载器。 http://code.google.com/appengine/docs/python/tools /uploadingdata.html
我只将它与股票应用程序引擎一起使用,它的工作方式就像一个魅力;对于 django-nonrel 你可能需要自己处理一些事情,但应该还是没问题的。
You should look into using the appengine bulkloader. http://code.google.com/appengine/docs/python/tools/uploadingdata.html
I've only used it with stock appengine and it works like a charm; for django-nonrel you may have to handle a few things yourself but it should still be fine.