Denys Medynskyi
Denys Medynskyi

Reputation: 2353

Can't make asset precompile before pushing to heroku

I need to make it to make my jQuery working on Heroku.

Here is my console:

    $ rake assets:precompile
    c:/Ruby192/bin/ruby.exe c:/Ruby192/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets
  rake aborted!
  Access denied for user 'root'@'localhost' (using password: NO)
  Tasks: TOP => environment
  (See full trace by running task with --trace)
   rake aborted!
  Command failed with status (1): [c:/Ruby192/bin/ruby.exe c:/Ruby192/bin/rak...]
  Tasks: TOP => assets:precompile
  (See full trace by running task with --trace)

When I try do run:

     $ assets:precompile
     sh: assets:precompile: command not found

EDITED: Also I added this line to application.rb:

      config.assets.initialize_on_precompile = false

Upvotes: 0

Views: 460

Answers (1)

vajapravin
vajapravin

Reputation: 1383

You have mentioned wrong username and password of mysql. Some gems which need database access for assets:precompile.

Upvotes: 2

Related Questions