Ruby on Rails Herokuへのデブロイ
Ruby on Rails で作成したアプリケーションをHerokuへデブロイしようとしているのですが、
$ git push heroku master
の実行後にheroku openするとAplication errorが出てしまいました。
heroku logsやrails consoleでエラーの確認をして、bundle installやbundle update、rails db:migrate等を試してみたのですが上手くいきません。
また、Gemfileの
group :development, :test do
gem 'sqlite3', '~> 1.4'
の'~> 1.4'の部分を現在のバージョンに書き換えてみたのですがそれも違うようで困っています。何かわかる方がいらっしゃいましたら、よろしくお願いいたします。
発生している問題・エラーメッセージ
at=error code=H10 desc="App crashed" method=GET path="/" host=protected-wildwood-67434.herokuapp.com request_id=cff7cf4e-da11-4d06-85f2-0ce5b0583a9f fwd="114.183.160.214" dyno= connect= service= status=503 bytes= protocol=https 2019-12-23T13:11:34.424486+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=protected-wildwood-67434.herokuapp.com request_id=4ce9ac2c-9b7d-493f-9b08-e14bfd636f09 fwd="114.183.160.214" dyno= connect= service= status=503 bytes= protocol=https
該当のソースコード
Gemfile
1gem 'rails', '~> 6.0.2', '>= 6.0.2.1' 2# Use sqlite3 as the database for Active Record 3 4# Use Puma as the app server 5gem 'puma', '~> 4.1' 6# Use SCSS for stylesheets 7gem 'sass-rails', '>= 6' 8# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker 9gem 'webpacker', '~> 4.0' 10# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 11gem 'turbolinks', '~> 5' 12# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 13gem 'jbuilder', '~> 2.7' 14# Use Redis adapter to run Action Cable in production 15# gem 'redis', '~> 4.0' 16# Use Active Model has_secure_password 17# gem 'bcrypt', '~> 3.1.7' 18 19# Use Active Storage variant 20# gem 'image_processing', '~> 1.2' 21 22# Reduces boot times through caching; required in config/boot.rb 23gem 'bootsnap', '>= 1.4.2', require: false 24 25group :development, :test do 26 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 27 gem 'sqlite3', '~> 1.4' 28 29 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 30end 31 32group :development do 33 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 34 35 gem 'web-console', '>= 3.3.0' 36end 37 38group :test do 39 # Adds support for Capybara system testing and selenium driver 40 gem 'capybara', '>= 2.15' 41 gem 'selenium-webdriver' 42 # Easy installation and use of web drivers to run system tests with browsers 43 gem 'webdrivers' 44end 45group :production do 46 gem 'pg','0.20.0' 47end 48# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 49gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 50
railsconsole
1 Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? sqlite3 is not part of the bundle. Add it to your Gemfile. (LoadError) 2
試したこと
bundle install
bundle update
rails db:migrate
Gemfileの確認
補足情報(FW/ツールのバージョンなど)
Rails 6.0.2.1
ruby 2.5.7p206 (2019-10-01 revision 67816) [x64-mingw32]
gem 2.7.6.2
sqlite3 3.30.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/24 13:46