Files
lucent-laravel/UPGRADE.md
2024-08-27 12:24:51 +03:00

548 B

Upgrade from 1.1.* to 1.2.0

lucent.php config file

There is now an array of commands, accepting more than one.

from

"generateCommand" => env("LUCENT_GENERATE_COMMAND",  "generate:static"),

to

"commands" => [
    "generate:static" => "Build Website",
],

config/filesystems.php

Lucent has its own filesystem.

You should now add:

'lucent' => [
    'driver' => 'local',
    'root' => storage_path('app/public'),
    'url' => env('APP_URL').'/storage',
    'visibility' => 'public',
    'throw' => false,
],