Railsを使ってローカルで複数のプロジェクトを立ちあげたいのですが、ポートがかぶってしまうため複数のポートを使用したいです(ここではデフォルトの3000に加え、3001を加えようとしております)。
以下のサイトも参照し「boot.rb」を編集しましたがエラーが返ってきます。
リンク内容
以下、「boot.rb」の中身。
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) require 'bundler/setup' # Set up gems listed in the Gemfile. require 'bootsnap/setup' # Speed up boot time by caching expensive operations. require 'rails/commands/server' module Rails class Server def default_options super.merge({:Port => 3001}) end end end
以下、コマンドのエラー。
c:\Users\NEC-PCuser\Dropbox\app\sample_app>rails s -b 0.0.0.0 Traceback (most recent call last): 3: from bin/rails:3:in `<main>' 2: from bin/rails:3:in `require_relative' 1: from c:/Users/NEC-PCuser/Dropbox/app/sample_app/config/boot.rb:6:in `<top (required)>' c:/Users/NEC-PCuser/Dropbox/app/sample_app/config/boot.rb:6:in `require': cannot load such file -- rails/commands/server (LoadError)
ポートの分け方について、ご教授頂ければ幸いです。宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/20 07:03
2019/09/20 07:07
2019/09/20 07:40