理想
PreviewRunninngApplicationに於いて以下のような画面を映す
前提
一昨日はじめてAWScloudの存在を知り、初めて触った超プログラミング初心者です
Windows10を使用しています
色々と試行錯誤しましたが現在インストールされているヴァージョンを確認したところ以下の通りでした
ec2-user:~/environment $ gem -v 3.0.6 ec2-user:~/environment $ rails -v Rails 5.0.7.2 ec2-user:~/environment $ ruby -v ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux] ec2-user:~/environment $ bundle -v Bundler version 1.17.3
現状
ec2-user:~/environment/apps $ rails s -p $PORT -b $IP
を実行したところ
=> Booting Puma => Rails 5.0.7.2 application starting in development on http://127.0.0.1:8080 => Run `rails server -h` for more startup options Puma starting in single mode... * Version 3.12.2 (ruby 2.6.3-p62), codename: Llamas in Pajamas * Min threads: 5, max threads: 5 * Environment: development * Listening on tcp://127.0.0.1:8080 Use Ctrl-C to stop
と返されるのですが、
PreviewRunninngApplicationをクリックすると
Started GET "/" for 92.202.9.242 at 2020-01-06 06:28:04 +0000 Cannot render console from 92.202.9.242! Allowed networks: 127.0.0.1, ::1, 127.0.0.0/127.255.255.255 Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).): activerecord (5.0.7.2) lib/active_record/connection_adapters/connection_specification.rb:176:in `rescue in spec' activerecord (5.0.7.2) lib/active_record/connection_adapters/connection_specification.rb:173:in `spec' ・ ・ ・ ・ Rendered /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/actionpack-5.0.7.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/actionpack-5.0.7.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (26.5ms)
となり、プレビューができません。原因を教えていただけると幸いです。
試したこと
development.rbにて
Rails.application.configure do config.web_console.whitelisted_ips = '92.202.9.242' end
を最後の方に記載してみました