安装Alchemy cms(Ruby)后,将错误视为“未找到根页面”。那么如何创建Root页呢?
答案 0 :(得分:1)
炼金术维护者:)
您是否设置了数据库?
bin/rake alchemy:install
应该将Alchemy::Seeder.seed!
添加到您应用的db/seeds.rb
中。
答案 1 :(得分:0)
在config.rb
中,您可以使用root 'controller#action'
将root设置为您喜欢的任何页面。例如:
root 'home#main`
Alchemy does this for you,指向pages#show
,其中loads your root page来自数据库。
确保您已根据installation instructions设置Alchemy,专门运行rake alchemy:install
,这将使用根路径为您的数据库播种。