When I run the app I deployed to Heroku, I get this error:
ActionView::Template::Error ('fontawesome.less' wasn't found
I've tried precompile the assets locally - this way:
bundle exec rake assets:precompile
The result:
...
FATAL: database "myapp_production" does not exist
...
When I run - heroku run rake assets:precompile
, the result is:
...
'fontawesome.less' wasn't found
...
The setup in config/environments/production.rb
:
config.assets.compile = true
What causes this problem?
Many thanks