Skip to content

Commit 723f6ad

Browse files
committed
Add fallback to local site provider
1 parent 6762544 commit 723f6ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaravelProviderFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class LaravelProviderFactory
2626
*/
2727
public static function createLaravelConfigFromEnv(callable $envFunction): array
2828
{
29-
$orchType = $envFunction(self::ORCH_TYPE);
29+
$orchType = $envFunction(self::ORCH_TYPE) ?: "local";
3030

3131
$validation = match ($orchType) {
3232
"dashboard", "orchestration" => [

0 commit comments

Comments
 (0)