From 8bb8f723dcde188aa479671310ec5e3d3b4994e1 Mon Sep 17 00:00:00 2001 From: Holger Reinhardt Date: Fri, 29 Jul 2016 13:54:25 +0200 Subject: [PATCH] add config file --- config/resque.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config/resque.php diff --git a/config/resque.php b/config/resque.php new file mode 100644 index 0000000..342269d --- /dev/null +++ b/config/resque.php @@ -0,0 +1,27 @@ + [ + '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), + +];