Нет описания http://j1x-huginn.herokuapp.com

Procfile 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ###############################
  2. # DEVELOPMENT #
  3. ###############################
  4. # Procfile for development using the new threaded worker (scheduler, twitter stream and delayed job)
  5. web: bundle exec rails server -b0.0.0.0
  6. jobs: bundle exec rails runner bin/threaded.rb
  7. # Old version with separate processes (use this if you have issues with the threaded version)
  8. # web: bundle exec rails server
  9. # schedule: bundle exec rails runner bin/schedule.rb
  10. # twitter: bundle exec rails runner bin/twitter_stream.rb
  11. # dj: bundle exec script/delayed_job run
  12. ###############################
  13. # PRODUCTION #
  14. ###############################
  15. # Using the threaded worker (consumes less RAM but can run slower)
  16. # web: bundle exec unicorn -c config/unicorn.rb
  17. # jobs: bundle exec rails runner bin/threaded.rb
  18. # Old version with separate processes (use this if you have issues with the threaded version)
  19. # web: bundle exec unicorn -c config/unicorn.rb
  20. # schedule: bundle exec rails runner bin/schedule.rb
  21. # twitter: bundle exec rails runner bin/twitter_stream.rb
  22. # dj: bundle exec script/delayed_job run
  23. ###############################
  24. # Multiple DelayedJob workers #
  25. ###############################
  26. # Per default Huginn can just run one agent at a time. Using a lot of agents or calling slow
  27. # external services frequently might require more DelayedJob workers (an indicator for this is
  28. # a backlog in your 'Job Management' page).
  29. # Every uncommented line starts an additional DelayedJob worker. This works for development, production
  30. # and for the threaded and separate worker processes. Keep in mind one worker needs about 300MB of RAM.
  31. #
  32. #dj2: bundle exec script/delayed_job -i 2 run
  33. #dj3: bundle exec script/delayed_job -i 3 run
  34. #dj4: bundle exec script/delayed_job -i 4 run
  35. #dj5: bundle exec script/delayed_job -i 5 run
  36. #dj6: bundle exec script/delayed_job -i 6 run
  37. #dj7: bundle exec script/delayed_job -i 7 run
  38. #dj8: bundle exec script/delayed_job -i 8 run
  39. #dj9: bundle exec script/delayed_job -i 9 run
  40. #dj10: bundle exec script/delayed_job -i 10 run