add config file

This commit is contained in:
Holger Reinhardt 2016-07-29 13:54:25 +02:00
parent afceda3d95
commit 8bb8f723dc

27
config/resque.php Normal file
View File

@ -0,0 +1,27 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Connection
|--------------------------------------------------------------------------
|
*/
'connection' => [
'host' => env('RESQUE_REDIS_HOST', 'localhost'),
'port' => env('RESQUE_REDIS_PORT', 6379),
'db' => env('RESQUE_REDIS_DB', 0),
],
/*
|--------------------------------------------------------------------------
| Track Status
|--------------------------------------------------------------------------
|
*/
'trackStatus' => env('RESQUE_TRACK_STATUS', false),
];