diff options
author | lain <lain@soykaf.club> | 2024-12-19 10:15:30 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2024-12-19 10:15:30 +0000 |
commit | 1170dfdd49d9ab0d3a1788db253e88e1bbeb67e1 (patch) | |
tree | be0e3d2d110f78f83e7fa779d8a12f0f0f54811d /docs/installation/debian_based_en.md | |
parent | 31487e5be48f3845d9cf57116dd5a618a733e259 (diff) | |
parent | c0fdd0e2cf2e57aa02776c41d21b10c17f745193 (diff) | |
download | pleroma-1170dfdd49d9ab0d3a1788db253e88e1bbeb67e1.tar.gz pleroma-1170dfdd49d9ab0d3a1788db253e88e1bbeb67e1.zip |
Merge branch 'release/2.8.0' into 'stable'
Release/2.8.0
See merge request pleroma/pleroma!4295
Diffstat (limited to 'docs/installation/debian_based_en.md')
-rw-r--r-- | docs/installation/debian_based_en.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/installation/debian_based_en.md b/docs/installation/debian_based_en.md index b61e4addd..21cfe2bff 100644 --- a/docs/installation/debian_based_en.md +++ b/docs/installation/debian_based_en.md @@ -69,12 +69,18 @@ cd /opt/pleroma sudo -Hu pleroma mix deps.get ``` -* Generate the configuration: `sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen` +* Generate the configuration: + +```shell +sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen` +``` + +* During this process: * Answer with `yes` if it asks you to install `rebar3`. * This may take some time, because parts of pleroma get compiled first. * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`. -* Check the configuration and if all looks right, rename it, so Pleroma will load it (`prod.secret.exs` for productive instance, `dev.secret.exs` for development instances): +* Check the configuration and if all looks right, rename it, so Pleroma will load it (`prod.secret.exs` for production instances, `dev.secret.exs` for development instances): ```shell sudo -Hu pleroma mv config/{generated_config.exs,prod.secret.exs} |