当我在开发模式下启动rails服务器时,我想要始终保持瘦身.
默认情况下,webrick使用.所以我在我的Gemfile中添加了thin
gem 'thin',:group => 'development'
现在,如果我想用它在开发模式下启动我的服务器,我必须定义它.
bundle exec rails s thin
如果我没有定义它,它总是使用webrick.那么如何定义默认使用thin?
而不是rails只需输入:
>> thin start -p 3000
其中3000是您的端口号.
您还可以指定环境:
>> thin start -e production
原文链接:https://www.f2er.com/ruby/268305.html