If you have tried ResqueBoard, you will understand. If you just need a simple tool with a web interface to monitor php-resque, just try this one.
# 0. Make sure you have installed swoole and composer
# 1. Clone code from GitHub, and install the libs by composer
git clone https://github.com/Lucups/resque-panel.git
cd resque-panel/
composer install
# 2. Create config file, and edit it
cp ./config/config.dist.php ./config/config.php
vim ./config/config.php
# 3. Start WebSocket server by `nohup` command
nohup php server/rp_server.php > /tmp/resque_panel.log &
# 4. Start PHP web server (you can also use other web server, just like Nginx or Apache)
php -S localhost:8080 -t web/
# 5. Open your browser, and visit
http://localhost:8080
- Unit Test;
- History Data;
- Refactor js WebSocket Client, make it robust;
- More configuration parameters;
- Refactor service layer;
- Authentication Support;