32 lines
548 B
Markdown
32 lines
548 B
Markdown
# Upgrade from 1.1.* to 1.2.0
|
|
|
|
## lucent.php config file
|
|
|
|
There is now an array of commands, accepting more than one.
|
|
|
|
from
|
|
```php
|
|
"generateCommand" => env("LUCENT_GENERATE_COMMAND", "generate:static"),
|
|
```
|
|
|
|
to
|
|
```php
|
|
"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,
|
|
],
|
|
``` |