My foreman gem does not load all my services.
This is my Procfile:
search: redis-server
search: bundle exec rake resque:start &&> log/resque_worker_queue.log
search: bundle exec rackup private_pub.ru -s thin -E production & &> log/private_pub.log
search: bundle exec rake sunspot:solr:run
Is it possible to fix this Or should I better use GOD gem even in development mode?
The process types must all have unique names. It appears from your
Procfilethat you’ve named all the processessearch. Try the following as your Procfile: