Files
lucent-laravel/src/Config/main.php
T

35 lines
931 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
return [
2024-08-24 18:51:36 +03:00
"env" => env("LUCENT_ENV", "production"),
"schemas_path" => env("LUCENT_SCHEMAS_PATH", "app/Lucent"),
"database" => env('LUCENT_DB_CONNECTION', env('DB_CONNECTION', "sqlite")),
"name" => env("LUCENT_NAME", "Lucent"),
2023-10-16 12:39:17 +03:00
"url" => env("LUCENT_URL", env('APP_URL')),
2024-08-24 18:51:36 +03:00
"previewTarget" => env("LUCENT_PREVIEW_TARGET", "previewTarget"),
2024-08-24 19:35:07 +03:00
/*
* Make available laravel artisan commands for admin users
* example:
* [
* "command1:signature" => "Description 1"
* "command2:signature" => "Description 2"
* ]
*
* */
2024-08-24 18:51:36 +03:00
"commands" => [],
2024-08-24 19:35:07 +03:00
/*
* Image filter will be available both for rich editor fields
* and throughout your application
*
* example:
* [
* "filterName" => Filter::class
* ]
*
* */
2023-10-17 22:57:25 +03:00
"imageFilters" => [],
"canInvite" => ["admin"],
"canBuild" => ["admin"],
2023-10-20 21:17:43 +03:00
"systemUserId" => "",
2023-10-02 23:10:49 +03:00
];