自作している簡単なrailsアプリなのですが、ローカルでは問題ないのですが、heroku
に上げると機能が実装されていないという問題が発生いたしました。
db
は開発環境からpostgresql
を使っています。
zsh
1git push heroku 2heroku run rake db:migrate
コマンドでデプロイ出来ましたが、ログイン機能を試すと、Eメールまたはパスワードが違います
とエラーが表示されます。
ローカルでは問題なく実装されていました。
heroku/dataclips
で確認しますと、カラムは作成されたのですが、データが入っていないようなのです。
config/database.yml
# PostgreSQL. Versions 9.1 and up are supported. # # default: &default adapter: postgresql encoding: unicode # For details on connection pooling, see Rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> development: <<: *default database: railsPosts_development test: <<: *default database: railsPosts_test production: <<: *default url: <%= ENV['DATABASE_URL'] %>
Gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.5' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 5.2.4', '>= 5.2.4.2' 8# Use postgresql as the database for Active Record 9gem 'pg', '>= 0.18', '< 2.0' 10# Use Puma as the app server 11gem 'puma', '~> 3.11' 12# Use SCSS for stylesheets 13gem 'sass-rails', '~> 5.0' 14# Use Uglifier as compressor for JavaScript assets 15gem 'uglifier', '>= 1.3.0' 16# See https://github.com/rails/execjs#readme for more supported runtimes 17# gem 'mini_racer', platforms: :ruby 18 19# Use CoffeeScript for .coffee assets and views 20gem 'coffee-rails', '~> 4.2' 21# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 22gem 'turbolinks', '~> 5' 23# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 24gem 'jbuilder', '~> 2.5' 25# Use Redis adapter to run Action Cable in production 26# gem 'redis', '~> 4.0' 27# Use ActiveModel has_secure_password 28# gem 'bcrypt', '~> 3.1.7' 29 30# Use ActiveStorage variant 31# gem 'mini_magick', '~> 4.8' 32 33# Use Capistrano for deployment 34# gem 'capistrano-rails', group: :development 35 36# Reduces boot times through caching; required in config/boot.rb 37gem 'bootsnap', '>= 1.1.0', require: false 38 39# ログイン機能 40gem 'devise' 41 42# 日本語化 43gem 'rails-i18n', '~> 5.1' 44gem 'devise-i18n' 45gem 'i18n_generators' 46 47# Bootstrap 48gem 'bootstrap', '~> 4.4.1' 49gem 'jquery-rails' 50gem 'devise-bootstrap-views' 51 52gem "refile", require: "refile/rails", github: 'manfe/refile' 53gem "refile-mini_magick" 54 55group :development, :test do 56 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 57 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 58end 59 60group :development do 61 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 62 gem 'web-console', '>= 3.3.0' 63 gem 'listen', '>= 3.0.5', '< 3.2' 64 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 65 gem 'spring' 66 gem 'spring-watcher-listen', '~> 2.0.0' 67end 68 69group :test do 70 # Adds support for Capybara system testing and selenium driver 71 gem 'capybara', '>= 2.15' 72 gem 'selenium-webdriver' 73 # Easy installation and use of chromedriver to run system tests with Chrome 74 gem 'chromedriver-helper' 75end 76 77# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 78gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 79
production
廻りは何も入れていないです。
ログイン機能はdevise
を使っています。
何故、ローカルのデータが本番環境
に反映されないのでしょうか?
よろしくご教授の程、お願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。