在启动/部署应用程序到 AppEngine 时如何提供一些启动对象?
我正在寻找一种轻松拥有类似于“装置”的对象的方法,但适用于真实的数据库(或我的本地主机工作环境)。
例如,假设我编写一个博客应用程序。默认情况下(当我在浏览器中加载应用程序时,这些对象应该已经在数据存储中),它需要一个用户(即第一个管理员)。虽然该机制并非 appengine
特有,但我对这种特殊情况很感兴趣。
谢谢。
I'm looking at way to easily have objects similar to 'fixtures', but for the real database (or my local host work environment).
For example, let's assume I write a blog app. By default (when I load the app in browser, these objects should already be in datastore), it requires an USER (i.e. first admin). While the mechanism is not specific to appengine
, I'm interested in this particular case.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的应用程序中有一些管理页面,检查所需的数据是否已经存在,并要求用户按下按钮来插入它(或者甚至不询问用户就自动执行)。
Have some admin page in your app, checking if the required data already exists, and asking the user to press a button to insert it (or doing it automatically without even asking the user).