In most cases though, you should always try to `reconfigure` the application first.
# Upgrade to a newer version
Upgrading the OpenProject is as easy as installing a newer OpenProject package
@ -252,3 +238,55 @@ and running the `openproject configure` command.
sudo zypper update openproject
sudo openproject configure
# Advanced
## Adding custom plugins to the installation
[A number of plugins](https://www.openproject.org/open-source/openproject-plugins/) exist for use with OpenProject. Most plugins that are maintained by us are shipping with OpenProject, however there are several plugins contributed by the community.
Previously, using them in a packaged installation was not possible without losing your changes on every upgrade. With the following steps, you can now use third party plugins.
**Note**: We cannot guarantee upgrade compatibility for third party plugins nor do we provide support for them. Please carefully check whether the plugins you use are available in newer versions before upgrading your installation.
#### 1. Add a custom Gemfile
If you have a plugin you wish to add to your packaged OpenProject installation, create a separate Gemfile with the Gem dependencies, such as the following:
We suggest to store the Gemfile under `/etc/openproject/Gemfile.custom`, but the choice is up to you, just make sure the `openproject` user is able to read it.
#### 2. Propagate the Gemfile to the package
You have to tell your installation to use the custom gemfile via a config setting:
To re-bundle the application including the new plugins, as well as running migrations and precompiling their assets, simply re-run the installer while using the same configuration as before.
```
openproject configure
```
Using `configure` will take your previous decisions in the installer and simply re-apply them, which is an idempotent operation. It will detect the Gemfile config option being set and re-bundle the application.
## Manually set configuration options
The installation wizard should take care of setting the most important
configuration options automatically based on your choices. However you might
want to tweak an option not supported by the wizard, in which case you can
directly set it using the `config:set` command of the `openproject` CLI.
For instance if you wanted to change the session store you would do: