Ruby on RailsのアプリをGithubからクローンしてからhello worldするまで
git clone URL
でクローンする。
bundle _2.2.17_ install
を実行する。
そうすると
n error occurred while installing pg (1.1.4), and Bundler cannot continue.
In Gemfile:
pg
上記エラーが出る
これは、pg Gemは開発環境には不要な為、最初に
bundle _2.2.17_ config set --local without 'production'
をする必要があった。
この後にbundle _2.2.17_ install
rails server
でlocalhost:3000にhello world表示