QueView
Visibility into scheuled Que jobs.
Installation
Add this line to your application’s Gemfile:
gem "que_view"
And mount the dashboard in your router.
mount QueView::Engine, at: "que_view"
Be sure to secure the dashboard in production.
Security
Basic Authentication
Set the following variables in your environment or an initializer.
ENV["QUEVIEW_USERNAME"] = "rock"
ENV["QUEVIEW_PASSWORD"] = "aroundtheclock"
Devise
authenticate :user, lambda {|user| user.admin? } do
mount QueView::Engine, at: "que_view"
end
TODO
- add rspec tests
- filter tasks by type
Know a bit about Que? Suggestions are greatly appreciated.
History
View the changelog
Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features