WSL(Windows on Linux)上で、Railsを立ち上げようとした際にやったこと。
WSL上に、Ubuntu 18.04をインストールし、Railsサーバを立ち上げようとしました。
$ bin/rails s -b 0.0.0.0 -p 2000
/Users/.rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/webpacker-4.0.7/lib/webpacker/configuration.rb:91:in `rescue in load': Webpacker configuration file not found /Users/app/task_app/config/webpacker.yml. Please run rails webpacker:install Error: No such file or directory @ rb_sysopen - /Users/app/task_app/config/webpacker.yml (RuntimeError)
Please run rails webpacker:install Errorと出ているので、googleで検索。
このページを参考に対処
Rails6サーバー起動時webpackerエラー(Node.jsアップデート, yarnインストール)
https://qiita.com/KZ-taran/items/d4c6eb1a41e0abd5b448
yarnのインストールがうまくいかなかったので、それは、こちらのページ
Ubuntu 18.04 に yarn をインストールする
https://loumo.jp/archives/23123
バージョン関係は以下の通り
$ rails -v
Rails 6.0.3.2
$ ruby -v
ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-linux]
以上覚書でした。