diff options
author | lain <lain@soykaf.club> | 2024-11-12 09:58:28 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2024-11-12 09:58:28 +0000 |
commit | 6941c47ac8a9e9d159e20ee10eebea629481e4f3 (patch) | |
tree | 013d666b6c5a05375ac23d2331cfd08fc1d119d4 /docs/installation/debian_based_en.md | |
parent | 35bd1977335a2bf73207f22aecbaead6e3112a1c (diff) | |
parent | ee3ab8b625ccb26aa633276c1676a077e3b155d4 (diff) | |
download | pleroma-6941c47ac8a9e9d159e20ee10eebea629481e4f3.tar.gz pleroma-6941c47ac8a9e9d159e20ee10eebea629481e4f3.zip |
Merge branch 'develop' into 'tusooa/se-opt-out'
# Conflicts:
# lib/pleroma/web/metadata/providers/feed.ex
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} |