From 29e8552fb1e9574c7feabe7a94bba570165bb26a Mon Sep 17 00:00:00 2001 From: "Ronald A. Richardson" Date: Mon, 15 Jul 2024 13:28:11 +0800 Subject: [PATCH] added `CONSOLE_PATH` environment variable as required for new structure --- composer.json | 2 +- config/fleetbase.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cb51eab..8cf0c7b 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fleetbase/core-api", - "version": "1.4.27", + "version": "1.4.28", "description": "Core Framework and Resources for Fleetbase API", "keywords": [ "fleetbase", diff --git a/config/fleetbase.php b/config/fleetbase.php index 771626f..844812c 100644 --- a/config/fleetbase.php +++ b/config/fleetbase.php @@ -14,6 +14,7 @@ ] ], 'console' => [ + 'path' => env('CONSOLE_PATH', '/fleetbase/console'), 'host' => env('CONSOLE_HOST', 'fleetbase.io'), 'subdomain' => env('CONSOLE_SUBDOMAIN'), 'secure' => env('CONSOLE_SECURE', !app()->environment(['development', 'local']))