Tag: nestacms

Nesta CMS和Rails3集成:将博客添加到现有的rails 3应用程序中

我将nesta(0.9.8)cms添加到现有的Rails 3.0.10应用程序中。 我启动并运行了博客,但没有布局/样式表。 我到目前为止所做的是:1。在rails app main root中,添加gem’natea’,gem’sass’并运行’bundle’ 2.运行“nesta new nesta-blog”3。编辑config.ru如下: require ::File.expand_path(‘../config/environment’, __FILE__) map “/” do run MyRails3App::Application end require ‘nesta/env’ require ‘nesta/app’ Nesta::App.root = ::File.expand_path(‘./nesta-blog’, ::File.dirname(__FILE__)) map “/blog” do run Nesta::App end 4.编辑config / routes.rb如下: require ‘nesta/env’ require ‘nesta/app’ Rails3MongoidOmniauthSimple::Application.routes.draw do mount Nesta::App.new => “/blog” root :to => “home#index” … 5. cd nesta-blog 6.运行nesta […]