Basically follow the article below
https://qiita.com/kazukimatsumoto/items/a0daa7281a3948701c39
Genfile is not set because PostgreSQL was used from the development environment.
Settings in config / environments / production.rb config.assets.compile = false changed to true
Since I had set production to start in the local environment, work to bring it back
~/.bash_profile
//export RAILS_SERVE_STATIC_FILES=1
//export TASKLEAF_DATABASE_PASSWORD=password
Comment out the above two
config/environments/production.rb
config.public_file_server.enabled = true
To
config/environments/production.rb
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
Back to
https://tasknotice.herokuapp.com/
Recommended Posts