出处https://www.railstutorial.org/book/beginning
新建空项目
rails new hello_app
启动项目服务器
rails server
gem最小版本的修改都可能使程序崩溃,为了方便维护, Gemfile中需要始终写死确定版本.教程初始的Gemfile
修改好文件之后安装Gemfile配置的gem, 我们将数据库改为mysql: gem "mysql", "2.9.1"
gem "mysql", "2.9.1"
bundle install