Website generation with Couscous

This commit is contained in:
Milos Stojanovic
2019-06-18 18:19:08 +02:00
parent db32375bb9
commit 1017722c77
2 changed files with 4 additions and 4 deletions

View File

@@ -102,8 +102,8 @@
<section class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10"> <section class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
<h2 id="configuring-logging-service">Configuring Logging service</h2> <h2 id="configuring-logging-service">Configuring Logging service</h2>
<p>Logging is provided via powerful <a href="https://github.com/Seldaek/monolog">Monolog</a> library. Please check their docs for more info.</p> <p>Logging is provided trough the powerful <a href="https://github.com/Seldaek/monolog">Monolog</a> library. Please check their docs for more info.</p>
<p>Default logger handler will use <code>/private/logs/app.log</code> file to store application logs:</p> <p>Default handler will use simple <code>/private/logs/app.log</code> file to store application logs and errors.</p>
<pre><code> 'Filegator\Services\Logger\LoggerInterface' =&gt; [ <pre><code> 'Filegator\Services\Logger\LoggerInterface' =&gt; [
'handler' =&gt; '\Filegator\Services\Logger\Adapters\MonoLogger', 'handler' =&gt; '\Filegator\Services\Logger\Adapters\MonoLogger',
'config' =&gt; [ 'config' =&gt; [

View File

@@ -102,8 +102,8 @@
<section class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10"> <section class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
<h2 id="adapters">Adapters</h2> <h2 id="adapters">Adapters</h2>
<p>Different storage adapters are supported via awesome <a href="https://github.com/thephpleague/flysystem">Flysystem</a> library.</p> <p>Different storage adapters are provided through the awesome <a href="https://github.com/thephpleague/flysystem">Flysystem</a> library.</p>
<p>You can use local filesystem (default), FTP, S3, Dropbox and many others. Please check Flysystem for exact setup for each adapter.</p> <p>You can use local filesystem (default), FTP, S3, Dropbox and many others. Please check Flysystem for the exact setup required for each adapter.</p>
<h2 id="default-local-disk-adapter">Default Local Disk Adapter</h2> <h2 id="default-local-disk-adapter">Default Local Disk Adapter</h2>
<p>With default adapter you just need to configure where is you <code>repository</code> folder which will serve as root for everything else.</p> <p>With default adapter you just need to configure where is you <code>repository</code> folder which will serve as root for everything else.</p>
<pre><code> 'Filegator\Services\Storage\Filesystem' =&gt; [ <pre><code> 'Filegator\Services\Storage\Filesystem' =&gt; [