git push heroku master продолжает терпеть неудачу?

Я продолжал получать эту ошибку на Cloud9:

    remote:        /tmp/build_3d423dbc0c4cb1831da6664e6804fe37/vendor/bundle/ruby/2.4.0/gems/rake-12.3.1/exe/rake:27:in `<top (required)>'
remote:        Tasks: TOP => environment
remote:        (See full trace by running task with --trace)
remote:  !
remote:  !     Precompiling assets failed.
remote:  !
remote:  !     Push rejected, failed to compile Ruby app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !       Push rejected to daeshaun-todo-app.
remote: 
To https://git.heroku.com/daeshaun-todo-app.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/daeshaun-todo-app.git'

Я изменил все с sqlite3 на postsql, установил пакет, добавил git, зафиксировал и нажал. Я удалил gemfile.lock. Что я сделал не так? Не стесняйтесь задавать вопросы.


person Daeshaun Morrison    schedule 14.06.2018    source источник
comment
@JonasLochmann Как бы вы это сделали?   -  person Daeshaun Morrison    schedule 14.06.2018
comment
Прочитайте ответы, у меня сработал 2-й: /вопросы/19650621/   -  person Daeshaun Morrison    schedule 15.06.2018


Ответы (1)


Прочитайте ответы, у меня сработал 2-й: Heroku upload-Precompiling assets failed Получается out это была проблема с предварительной компиляцией. В 1_

# config/application.rb
config.assets.initialize_on_precompile = false

`

person Daeshaun Morrison    schedule 15.06.2018