diff options
author | Lain Soykaf <lain@lain.com> | 2024-11-12 14:33:30 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2024-11-12 14:33:30 +0400 |
commit | 2baa9b007221a654dbfe2aad9353e5815f9d1ddb (patch) | |
tree | e7c655020bad9a6173a532d8aa76ff956b54f720 /docs/installation/debian_based_en.md | |
parent | 23e5eed4e0e61ea65bd895bee7d8a137fccf3307 (diff) | |
parent | 6099a94dbc26c9f86e340769af34c7b28725d831 (diff) | |
download | pleroma-2baa9b007221a654dbfe2aad9353e5815f9d1ddb.tar.gz pleroma-2baa9b007221a654dbfe2aad9353e5815f9d1ddb.zip |
Merge branch 'develop' into pleroma-token-view-scopes
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} |