![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/config/ |
<?php return [ /* |-------------------------------------------------------------------------- | Documentation Routes |-------------------------------------------------------------------------- | | These options configure the behavior of the LaRecipe docs basic route | where you can specify the url of your documentations, the location | of your docs and the landing page when a user visits /docs route. | | */ 'docs' => [ 'route' => '/docs', 'path' => '/resources/docs', 'landing' => 'overview', ], /* |-------------------------------------------------------------------------- | Documentation Versions |-------------------------------------------------------------------------- | | Here you may specify and set the versions and the default (latest) one | of your documentation's versions where you can redirect the user to. | Just make sure that the default version is in the published list. | | */ 'versions' => [ 'default' => '1.4.6', 'published' => [ '1.4.6' ] ], /* |-------------------------------------------------------------------------- | Documentation Settings |-------------------------------------------------------------------------- | | These options configure the additional behaviors of your documentation | where you can limit the access to only authenticated users in your | system. It is false initially so that guests can view your docs. | | */ 'settings' => [ 'auth' => false, 'ga_id' => '' ], /* |-------------------------------------------------------------------------- | Cache |-------------------------------------------------------------------------- | | Obviously rendering markdown at the back-end is costly especially if | the rendered files are massive. Thankfully, caching is considered | as a good option to speed up your app when having high traffic. | | Caching period unit: minutes | */ 'cache' => [ 'enabled' => env('LARECIPE_DOCS_CACHED', true), 'period' => 5 ], /* |-------------------------------------------------------------------------- | Search |-------------------------------------------------------------------------- | | Here you can add configure the search functionality of your docs. | You can choose the default engine of your search from the list | However, you can also enable/disable the search's visibility | | Supported Search Engines: 'algolia' | */ 'search' => [ 'enabled' => false, 'default' => 'algolia', 'engines' => [ 'algolia' => [ 'key' => '', 'index' => '' ] ] ], /* |-------------------------------------------------------------------------- | Documentation Repository |-------------------------------------------------------------------------- | | This is an optional config you can set in order to show an external link | to your documentation's repository if you have one. Once you set the | value of the url, LaRecipe automatically will show the nav button. | | */ 'repository' => [ 'provider' => 'github', 'url' => 'https://github.com/Laracommerce/laracom' ], /* |-------------------------------------------------------------------------- | Appearance |-------------------------------------------------------------------------- | | Here you can add configure the appearance of your docs. For example, | you can swap the default logo to custom one that matches your Id | Also, you can change the theme of your docs if you prefer that | | Supported Themes: 'light', 'dark' | */ 'ui' => [ 'show_app_name' => true, 'logo' => '', // e.g.: /images/logo.svg 'fav' => '', // e.g.: /fav.png 'theme' => 'light', 'code' => 'dark', 'back_to_top' => true, 'show_side_bar' => true, 'colors' => [ 'primary' => '#787AF6', 'secondary' => '#2b9cf2', 'selection' => '#f4f5f7' ], 'additional_css' => [ //'css/custom.css', ], 'additional_js' => [ //'js/custom.js', ], ], /* |-------------------------------------------------------------------------- | SEO |-------------------------------------------------------------------------- | | These options configure the SEO settings of your docs. You can set the | author, the description and the keywords. Also, LaRecipe by default | sets the canonical link to the viewed page's link automatically. | | */ 'seo' => [ 'author' => '', 'description' => '', 'keywords' => '', 'og' => [ 'title' => '', 'type' => 'article', 'url' => '', 'image' => '', 'description' => '', ] ], /* |-------------------------------------------------------------------------- | Forum |-------------------------------------------------------------------------- | | Giving a chance to your users to post thier questions or feedback | directly on your docs, is pretty nice way to engage them more. | However, you can also enable/disable the forum's visibility. | | Supported Services: 'disqus' | */ 'forum' => [ 'enabled' => false, 'default' => 'disqus', 'services' => [ 'disqus' => [ 'site_name' => '', // yoursite.disqus.com ] ] ] ];