mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
initial commit
This commit is contained in:
commit
1beb9dd34c
281 changed files with 56773 additions and 0 deletions
27
config/orbit.php
Normal file
27
config/orbit.php
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'default' => env('ORBIT_DEFAULT_DRIVER', 'md'),
|
||||
|
||||
'drivers' => [
|
||||
'md' => \Orbit\Drivers\Markdown::class,
|
||||
'json' => \Orbit\Drivers\Json::class,
|
||||
'yaml' => \Orbit\Drivers\Yaml::class,
|
||||
'md_json' => \Orbit\Drivers\MarkdownJson::class,
|
||||
],
|
||||
|
||||
'paths' => [
|
||||
'content' => base_path('content'),
|
||||
'cache' => storage_path('framework/cache/orbit'),
|
||||
],
|
||||
|
||||
'git' => [
|
||||
'enabled' => env('ORBIT_GIT_ENABLED', false),
|
||||
'name' => env('ORBIT_GIT_NAME'),
|
||||
'email' => env('ORBIT_GIT_EMAIL'),
|
||||
'root' => env('ORBIT_GIT_ROOT', base_path()),
|
||||
'binary' => env('ORBIT_GIT_BINARY', '/usr/bin/git'),
|
||||
],
|
||||
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue