herokuへデプロイさせ公開したいです。
どなたか、お力いただけると非常に助かります!!
herokuへデプロイする為、以下を実施。
$ git push heroku master
その後、ページを開くと、We're sorry, but something went wrong.と出てしまいます。
ログを確認したところ、
PG::UndefinedTable: ERROR: relation "shops" does not exist
と出てしまいました。調べたところ、migrationがうまくいっていないとこのエラーが出るよう。
heroku run rails db:migrate:status
で確認したところ
down 20200707102907 Devise create shops down 20200707103416 Create items down 20200707103432 Create messages down 20200707103449 Create shop items down 20200714031558 Create likes down 20200716002749 Add image to shops 開発環境は全て、UPになっています。
となっていました。
試したこと
heroku logs で上記を確認し状況を確認。
その後ネットで、一度リセットした上で、再度migrateすると戻ると書かれていたので、resetを実施。しかし、相変わらずエラー。
migrateの順番が間違っているとエラーが発生するとも書かれていたが、
ファイルを確認したが、順番は問題なさそう。
また、仮に順番が間違っていたとして、手動でどのように修正できるのかわからなかった。
bundle exec rake db:migrateも試しましたが、効果なし。
rake db:schema:load RAILS_ENV=productionもダメでした。
###heroku logsでのエラー文
2020-07-18T14:41:12.663663+00:00 heroku[router]: at=info method=GET path="/shops/sign_in" host=×××-app.herokuapp.com request_id=72dfb3ab-8a28-442b-b9b1-c2d114a08f66 fwd="111.239.162.201" dyno=web.1 connect=2ms service=184ms status=500 bytes=1827 protocol=http 2020-07-18T14:41:13.101660+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=×××-app.herokuapp.com request_id=2c440a77-e2c8-48f0-9c5e-af9abdeba86a fwd="111.239.162.201" dyno=web.1 connect=0ms service=45ms status=200 bytes=143 protocol=http
Gemfile
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.6.5' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.0' # Use Puma as the app server gem 'puma', '~> 3.11' # Use SCSS for stylesheets gem 'sass-rails', '~> 5' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker gem 'webpacker', '~> 4.0' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks gem 'turbolinks', '~> 5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Active Storage variant # gem 'image_processing', '~> 1.2' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.2', require: false group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] # Use mysql as the database for Active Record gem 'mysql2', '>= 0.4.4' end group :production do gem 'pg' end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers gem 'webdrivers' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem "haml-rails", ">= 1.0", '<= 2.0.1' gem 'font-awesome-sass' gem 'devise' gem 'pry-rails' gem 'byebug' gem 'jquery-rails' gem "refile", require: "refile/rails", github: 'manfe/refile' gem "refile-mini_magick" gem 'carrierwave'
補足情報(FW/ツールのバージョンなど)
heroku/7.42.4 darwin-x64 node-v12.16.2
Rails 6.0.3.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。