2014-11-14 102 views
0

我部署到Heroku的與multi-buildpack使用自定義procfile雪松堆棧:如何使用多buildpack在Heroku上啓動rails控制檯?

web: bundle exec unicorn -p $PORT -E $RACK_ENV -c ./config/unicorn.rb 
worker: bundle exec sidekiq -e production -C config/sidekiq.yml 
console: bundle exec irb -r ./console 

當我啓動我的控制檯heroku run console我得到LoadError: cannot load such file -- ./console和處女IRB會話。

如何初始化帶有導軌的控制檯並加載了我的應用程序環境?

回答

0

因此運行irb顯然是錯誤的。我需要的是console: bundle exec rails console