現在、AWSへのデプロイができず、2週間ほど進捗がなく苦しい状況です。
どなたかエラーの解決にご協力いただけないでしょうか。
何卒、よろしくお願いいたします。
#解決したい内容
Capistranoを使いrails6で作成したアプリをAWSにデプロイしたい
#発生しているエラー
❯ bundle exec cap production deploy 〜省略〜 01:18 deploy:migrating 01 $HOME/.rbenv/bin/rbenv exec bundle exec rake db:migrate 01 [fog][DEPRECATION] Unable to load Fog::Atmos::Storage 01 [fog][DEPRECATION] Falling back to deprecated constant Fog::Storage::Atmos. The preferred format of service provider constant… 01 [fog][DEPRECATION] Unable to load Fog::Clodo::Compute 〜省略〜 01 Caused by: 01 Gem::LoadError: sqlite3 is not part of the bundle. Add it to your Gemfile. 〜省略〜 LoadError: 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. 〜省略〜 Caused by: SSHKit::Runner::ExecuteError: Exception while executing as GenkiHirano@54.168.46.152: rake exit status: 1
#作業手順
下記サイトを参考に
https://qiita.com/take18k_tech/items/5710ad9d00ea4c13ce36#1-%E3%81%AF%E3%81%98%E3%82%81%E3%81%AB
master.key の配置と Rails アプリのデプロイまで終了しているのですが、上記エラーに詰まってしまい開発が進まない状況です。
#該当コード
Gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.6' 5 6gem 'rails', '~> 6.0.3', '>= 6.0.3.3' 7gem 'bcrypt' 8gem 'puma', '~> 4.1' 9gem 'sass-rails', '>= 6' 10gem 'webpacker', '~> 4.0' 11gem 'turbolinks', '~> 5' 12gem 'jbuilder', '~> 2.7' 13gem 'bootsnap', '>= 1.4.2', require: false 14gem 'bootstrap-sass' 15gem 'devise' 16gem 'faker' 17gem 'jquery-rails' 18gem 'will_paginate' 19gem 'bootstrap-will_paginate' 20gem 'carrierwave' 21gem "mini_magick" 22gem 'pry-rails' 23gem 'ransack' 24 25group :development, :test do 26 gem "factory_bot_rails" 27 gem 'rubocop-airbnb' 28 gem 'rails-controller-testing' 29 gem 'rspec-rails' 30 gem 'sqlite3' 31 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 32end 33 34group :development do 35 gem 'spring-commands-rspec' 36 gem 'web-console', '>= 3.3.0' 37 gem 'listen', '~> 3.2' 38 gem 'spring' 39 gem 'spring-watcher-listen', '~> 2.0.0' 40 gem "capistrano", "~> 3.10", require: false 41 gem "capistrano-rails", "~> 1.6", require: false 42 gem 'capistrano-rbenv', '~> 2.2' 43 gem 'capistrano-rbenv-vars', '~> 0.1' 44 gem 'capistrano3-puma', '< 5' 45end 46 47group :test do 48 gem 'webdrivers' 49 gem 'capybara', '>= 2.15' 50 gem 'selenium-webdriver' 51end 52 53group :production do 54 gem 'pg' 55 gem 'fog-aws' 56end 57 58gem 'tzinfo-data'
database.yml
default: &default adapter: sqlite3 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> timeout: 10000 development: <<: *default database: db/development.sqlite3 test: <<: *default database: db/test.sqlite3 production: <<: *default database: connect_production username: postgres password: <%= Rails.application.credentials.db[:password] %> host: <%= Rails.application.credentials.db[:hostname] %>
#試したこと
・エラーメッセージでsqlite3はバンドルの一部ではありませんと言われているので、sqlite3を削除→bundle installしましたが、同じエラーが発生しました。
・database.ymlのproduction設定が原因ではと考え、設定を変えましたが同じエラーが発生しました、
何卒、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。