nickurt/beanstalkd-ui

Beanstalkd UI (Admin)

v0.1.1 2015-01-03 19:33 UTC

This package is not auto-updated.

Last update: 2019-10-09 02:49:12 UTC


README

Intro

A simple Beanstalkd Admin UI to get information about your jobs, it is not required to have SlmQueue/SlmQueueBeanstalkd installed, but to fire jobs it's required.

This is only a shell/ui to get information about your jobs.

Install

Installation with the composer

php composer.phar require nickurt/beanstalkd-ui:dev-master

Requirements

Post Installation

Enable it in your application.config.php file

<?php
return [
    'modules' => [
        // ...
        'ZfBeanstalkdUI',
    ],
    // ...
];

Configuration

Config

When you are already using SlmQueue/SlmQueueBeanstalkd, it is not needed to copy any configuration files.

ZfBeanstalkdUI will automatic detect your configuration settings, due it used the same connection service/files as SlmQueueBeanstalkd.

When you are not using this, copy the file (remove the *.dist) config/zfbeanstalkd_config.local.php.dist to your config/autoload folder and change the configuration settings.

Routes

Yes!, it is possible to change the routes of the application, just copy (remove the *.dist) the config/zfbeanstalkd_routes.local.php.dist file to your config/autoload folder and change the settings.

Examples

Example2 Example1