Website generation with Couscous

This commit is contained in:
Milos Stojanovic
2019-06-18 18:21:56 +02:00
parent 1017722c77
commit 67e392dd88

View File

@@ -103,9 +103,9 @@
<section class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
<h2 id="adapters">Adapters</h2>
<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 the exact setup required for each adapter.</p>
<p>You can use local filesystem (default), FTP, S3, Dropbox and many others. Please check Flysystem docs for the exact setup required for each adapter.</p>
<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 your <code>repository</code> folder is. This folder will serve as root for everything else.</p>
<pre><code> 'Filegator\Services\Storage\Filesystem' =&gt; [
'handler' =&gt; '\Filegator\Services\Storage\Filesystem',
'config' =&gt; [
@@ -145,8 +145,8 @@
],
</code></pre>
<h2 id="sftp-adapter">SFTP Adapter</h2>
<p>You must require additional library <code>composer require league/flysystem-sftp</code>.
See official <a href="https://flysystem.thephpleague.com/docs/adapter/sftp/">documentation</a>.</p>
<p>You must require additional library <code>composer require league/flysystem-sftp</code>.</p>
<p>See official <a href="https://flysystem.thephpleague.com/docs/adapter/sftp/">documentation</a>.</p>
<pre><code> 'Filegator\Services\Storage\Filesystem' =&gt; [
'handler' =&gt; '\Filegator\Services\Storage\Filesystem',
'config' =&gt; [
@@ -168,8 +168,8 @@ See official <a href="https://flysystem.thephpleague.com/docs/adapter/sftp/">doc
],
</code></pre>
<h2 id="dropbox-adapter">Dropbox Adapter</h2>
<p>You must require additional library <code>composer require spatie/flysystem-dropbox</code>.
See official <a href="https://flysystem.thephpleague.com/docs/adapter/dropbox/">documentation</a></p>
<p>You must require additional library <code>composer require spatie/flysystem-dropbox</code>.</p>
<p>See official <a href="https://flysystem.thephpleague.com/docs/adapter/dropbox/">documentation</a></p>
<pre><code> 'Filegator\Services\Storage\Filesystem' =&gt; [
'handler' =&gt; '\Filegator\Services\Storage\Filesystem',
'config' =&gt; [