diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2023-07-03 21:04:23 +0000 |
---|---|---|
committer | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2023-07-03 21:04:23 +0000 |
commit | 6fbbf80800792b6647fe3eafc50eb51cbf491eeb (patch) | |
tree | f1faf74e1506207609cddbacc9369a0185a6c87c /docs/installation/otp_vs_from_source.include | |
parent | 2b9cd25cf4b27b0ce3437a621f36f7f740cb542a (diff) | |
parent | bf2b4b9400a44bfec02db9210a4ebc6d2d0f8553 (diff) | |
download | pleroma-6fbbf80800792b6647fe3eafc50eb51cbf491eeb.tar.gz pleroma-6fbbf80800792b6647fe3eafc50eb51cbf491eeb.zip |
Merge branch 'gentoo_otp' into 'develop'
Packaged installation guide for gentoo
See merge request pleroma/pleroma!3906
Diffstat (limited to 'docs/installation/otp_vs_from_source.include')
-rw-r--r-- | docs/installation/otp_vs_from_source.include | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/installation/otp_vs_from_source.include b/docs/installation/otp_vs_from_source.include index 63e837a53..6c7820275 100644 --- a/docs/installation/otp_vs_from_source.include +++ b/docs/installation/otp_vs_from_source.include @@ -1,3 +1,8 @@ -## OTP releases vs from-source installations +## Packaged (OTP) installation vs Manual (from-source) installations -There are two ways to install Pleroma. You can use OTP releases or do a from-source installation. OTP releases are as close as you can get to binary releases with Erlang/Elixir. The release is self-contained, and provides everything needed to boot it, it is easily administered via the provided shell script to open up a remote console, start/stop/restart the release, start in the background, send remote commands, and more. With from source installations you install Pleroma from source, meaning you have to install certain dependencies like Erlang+Elixir and compile Pleroma yourself. +There is multiple ways to install Pleroma. +<dl> +<dt>Distro-provided packages</dt><dd>This is the recommended method, where you can get the strongest compatibility guarantees and the best dependency-management</dd> +<dt>Pleroma-provided OTP binaries</dt><dd>Intended as fallback for Alpine/Debian-compatible systems lacking a proper Pleroma package, they are heavier than proper distro packages as they also contain Erlang/Elixir and can break after system updates</dd> +<dt>Manual from-source installation</dt><dd>Needs build-dependencies to be installed and manual updates+rebuilds. Allows for easier source-customisations.</dd> +</dl> |