diff options
author | Mark Jaroski <pleorama@rationa.li> | 2024-10-21 00:10:27 +0000 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2024-10-21 00:10:27 +0000 |
commit | f048637b41a81c527b6f3c0f5e90db91971f3842 (patch) | |
tree | bd429aaa4644718bd42d77b90fbda4e52e6ca55f /docs/installation/debian_based_en.md | |
parent | 639016bdee37e848b0e72eab5726337c66ecf47f (diff) | |
download | pleroma-f048637b41a81c527b6f3c0f5e90db91971f3842.tar.gz pleroma-f048637b41a81c527b6f3c0f5e90db91971f3842.zip |
Some tidying and grammer improvements for these installation docs, based on my experience installing Pleroma on Ubuntu 24.04 a few minutes ago.
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} |