首页 > 代码库 > Rails + Bootstrap个人博客搭建的完整过程
Rails + Bootstrap个人博客搭建的完整过程
Part 1
-首先最基本的,创建一个新的的project:
rails new blog-然后修改source为https://ruby.taobao.com,加入bootstrap的gem到Gemfile:
gem ‘twitter-bootstrap-rails‘执行bundle install没有错误,但是有一个提示:
Important: You may need to add a javascript runtime to your Gemfile in order for bootstrap‘s LESS files to compile to CSS. ********************************************** ExecJS supports these runtimes: therubyracer - Google V8 embedded within Ruby therubyrhino - Mozilla Rhino embedded within JRuby Node.js Apple JavaScriptCore - Included with Mac OS X Microsoft Windows Script Host (JScript) **********************************************看提示是缺少了一个js的runtime,Ok,按照提示我安装了ExecJS
gem install execjs
然后在Gemfile里面添加了ExecJS支持的runtime:
gem ‘therubyracer‘再次bundle install,没有问题,访问localhost:3000,可以正常访问!
Part 2
-创建首页
rails generate controller blogs
def index end
然后在views目录下面创建index.html.erb文件,加入一行html的代码
<h1>Hola,Rails!</h1>
最后就是更改routes.rb文件,添加
root to: ‘blogs#index‘
Rails + Bootstrap个人博客搭建的完整过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。