\documentclass{article}
\usepackage{ulem}
\usepackage{graphicx}
\usepackage{hyperref}
\pagestyle{headings}
\begin{document}
\part{Install Gollem File Manager}
\section{Install application}
Inside your Root Project, run

<pre><code>
sudo -u www-data composer require horde/gollem \^{}5
</code></pre>
\section{Provide configuration}
Put backends.local.php config file into

\begin{itemize}
\item var/config/gollem


\end{itemize}
You can use web/gollem/config/backends.php as template

Run the command

<pre><code>
sudo -u www-data composer horde-reconfigure
</code></pre>
\section{Configure via Web UI}
Go to the web UI and generate the default config for the file manager app:

/horde/admin/config/config.php?app=gollem

On a fresh installation, the config UI will try to place the file in the web dir.<br />
This would result in the file vanishing on the next update.<br />
You need to move them to the persistent config dir.

<pre><code>
mv web/gollem/config/conf.php var/config/gollem/conf.php
sudo -u www-data composer horde-reconfigure
</code></pre>
For later changes, the config UI should recognize the symlink and edit the target file instead.

\section{Setup the database tables}
Run this command:

<pre><code>
 ./vendor/bin/horde-db-migrate up
</code></pre>
\end{document}
