dmstr/yii2-resque-module

Resque job manager module with backend UI

Installs: 37 299

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 5

Forks: 0

Open Issues: 0

Type:yii2-extension

2.0.0 2018-06-19 16:00 UTC

This package is auto-updated.

Last update: 2024-05-03 12:24:55 UTC


README

Latest Stable Version Total Downloads License

Resque job manager module with backend UI

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist hrzg/yii2-resque-module "*"

or add

"hrzg/yii2-resque-module": "*"

to the require section of your composer.json file.

Setup

Once the extension is installed, simply use it in your code by :

Docker containers

redis:
  image: redis:3

appworker:
  build: .
  command: yii resque/work
  volumes:
    - '.:/app'
  links:
    - 'redis:REDIS'
    - 'mariadb:DB'

Module configuration

'resque' => [
    'class' => 'hrzg\resque\Module',
    'layout' => '@admin-views/layouts/main',
]