Herokuでデプロイしたrails5のアプリでユーザー登録をしたい
udemyのDocker講座でdockerでrails5の環境構築を行い、herokuでデプロイさせました。
travis ciのテストも通っているのですがデプロイ先でdeviseを用いた利用者登録(user_signup)などが出来ずWe're sorry, but something went wrong.
If you are the application owner check the logs for more information.がデプロイ先で生じております。
発生している問題・エラーメッセージ
We're sorry, but something went wrong. If you are the application owner check the logs for more information.
該当のソースコード
Dockerfile
1FROM ruby:2.5 2RUN apt-get update && apt-get install -y \ 3 build-essential \ 4 libpq-dev \ 5 nodejs \ 6 postgresql-client \ 7 yarn 8WORKDIR /kebabu 9COPY Gemfile Gemfile.lock /kebabu/ 10RUN bundle install
Dockerfileprod
1FROM ruby:2.5 2RUN apt-get update && apt-get install -y \ 3 build-essential \ 4 libpq-dev \ 5 nodejs \ 6 postgresql-client \ 7 yarn 8WORKDIR /kebabu 9COPY Gemfile Gemfile.lock /kebabu/ 10RUN bundle install 11COPY .. 12CMD ["rails", "s"]
routesrb
1Rails.application.routes.draw do 2 devise_for :users 3 root 'home#index' 4 resources :users 5end 6
試したこと
heroku でlogがみれると思うのですがlogが何もなかったです。
補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー