Rails 应用程序启动时运行什么代码?
当 Rails 应用程序首次启动时,是否有我可以编写一些代码的事件?我想确保应用程序启动时我的管理员用户存在。我正在使用 devise auth 框架以防有帮助。
is there an event I can write some code for when a Rails application is first started? I want to make sure my administrator user exists whenever the app starts. I am using devise auth framework in case that helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好在
seeds.rb
中创建一个新用户,并在启动应用程序之前运行rake db:seed
- 这就是它的用途。It would be better to make a new user in
seeds.rb
and runrake db:seed
before starting the application - that's what it's for.您可能可以在 config/initializers 内部创建一个初始化程序。不过,您必须确保首先加载设备。
You could probably make an initializer inside of
config/initializers
. You have to make sure you load up devise first, though.