I am new to rails and I am having a problem with starting a web server. After I type in "rails server" in my terminal, I see the following error.
How can I fix this? I tried gem pristine stuff as suggested but it didn't work.
I am new to rails and I am having a problem with starting a web server. After I type in "rails server" in my terminal, I see the following error.
How can I fix this? I tried gem pristine stuff as suggested but it didn't work.
If bundler is not install, install bundler with command: gem install bundler
Install all gem with command: bundle install
or bundle
.
Then Configure your database to the database.yml.
Create new database: rake db:create
Then start rails server.
rails server
or rails s