Shopify / dashing

The exceptionally handsome dashboard framework in Ruby and Coffeescript.
http://shopify.github.com/dashing/
MIT License
10.98k stars 1.18k forks source link

Heroku install issue #263

Open ozdemircili opened 10 years ago

ozdemircili commented 10 years ago

Hi,

I have installed dashing accoding to the instructions in wiki to Heroku. I am getting the following error:

2013-11-06T13:50:58.412253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/runner.rb:156:in run!' 2013-11-06T13:50:58.412253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/bin/thin:23:inload' 2013-11-06T13:50:58.412253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/runner.rb:200:in run_command' 2013-11-06T13:50:58.412253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/controllers/controller.rb:72:instart' 2013-11-06T13:50:58.412253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/bin/thin:23:in <main>' 2013-11-06T13:50:59.551656+00:00 heroku[web.1]: Process exited with status 1 2013-11-06T13:50:59.562287+00:00 heroku[web.1]: State changed from starting to crashed 2013-11-06T13:51:53.778092+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:51:54.302835+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:53:15.029505+00:00 heroku[api]: Scale to web=1 by ozdemircili@gmail.com 2013-11-06T13:53:19.579798+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:53:19.826035+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:53:21.132923+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:54:19+00:00 heroku[slug-compiler]: Slug compilation started 2013-11-06T13:53:21.332735+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=codensys-dashing.herokuapp.com fwd="94.125.136.254" dyno= connect= service= status=503 bytes= 2013-11-06T13:54:35.272502+00:00 heroku[api]: Deploy 814de5d by ozdemircili@gmail.com 2013-11-06T13:54:35.300783+00:00 heroku[api]: Release v4 created by ozdemircili@gmail.com 2013-11-06T13:54:35+00:00 heroku[slug-compiler]: Slug compilation finished 2013-11-06T13:54:35.612892+00:00 heroku[web.1]: State changed from crashed to starting 2013-11-06T13:54:38.991200+00:00 heroku[web.1]: Starting process with commandbundle exec thin start -R config.ru -e $RACK_ENV -p 16755 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/controllers/controller.rb:182:inload_rackup_config' 2013-11-06T13:54:40.299041+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/rack/adapter/loader.rb:32:in read': No such file or directory - config.ru (Errno::ENOENT) 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/rack/adapter/loader.rb:32:inload' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/runner.rb:200:in run_command' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/bin/thin:6:in<top (required)>' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/bin/thin:23:in load' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/controllers/controller.rb:72:instart' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/gems/thin-1.6.1/lib/thin/runner.rb:156:in run!' 2013-11-06T13:54:40.299041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.0.0/bin/thin:23:in

' 2013-11-06T13:54:41.442855+00:00 heroku[web.1]: State changed from starting to crashed 2013-11-06T13:54:41.430115+00:00 heroku[web.1]: Process exited with status 1

semdinsp commented 10 years ago

I recently installed dashboard into heroku with no issues. When I parse/peruse the error messages above the key line for me is: read': No such file or directory - config.ru

I suspect that you did not add config.ru to your git commit. Please check git status to see if it is missing any files. S.

ozdemircili commented 10 years ago

Right,

After adding config.ru and git commit everything works beautifully.