如何从固定装置远程加载数据

发布于 2024-12-12 06:00:29 字数 172 浏览 0 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

后eg是否自 2024-12-19 06:00:29

我相信答案是

python manage.py remote loaddata fixturename

加上一个“远程”词。我已经测试过(在我输入此内容之前大约五分钟)。它会提示您输入 Gmail 帐户和密码。

您还需要在 app.yaml 中启用remote_api(如果我没有记错的话)

builtins:
- remote_api: on

我希望它能起作用。

I believe the answer is

python manage.py remote loaddata fixturename

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)

builtins:
- remote_api: on

I hope that work.

财迷小姐 2024-12-19 06:00:29

您应该考虑使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文