转载请注明出处: http://qiudeqing.com/rails/2016/09/05/rails-tutorial.html

出处https://www.railstutorial.org/book/beginning

chapter1: From zero to deploy

新建空项目

rails new hello_app

启动项目服务器

rails server

bundler管理gem

gem最小版本的修改都可能使程序崩溃,为了方便维护, Gemfile中需要始终写死确定版本.教程初始的Gemfile

修改好文件之后安装Gemfile配置的gem, 我们将数据库改为mysql: gem "mysql", "2.9.1"

bundle install