summaryrefslogtreecommitdiff
path: root/docs/installation
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-21 06:22:34 +0300
committerrinpatch <rinpatch@sdf.org>2019-06-21 06:22:34 +0300
commit4669a56aa37bf02aa6564ef53758879e3a58a6b2 (patch)
tree520fced69520a97ae0ec8cebb1ebed7c2e58c2e5 /docs/installation
parentf9515a36112c8f6a8a40dbda234aaa6bb5de3827 (diff)
downloadpleroma-4669a56aa37bf02aa6564ef53758879e3a58a6b2.tar.gz
pleroma-4669a56aa37bf02aa6564ef53758879e3a58a6b2.zip
Add notes on RUM indexes
Diffstat (limited to 'docs/installation')
-rw-r--r--docs/installation/releases_en.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/installation/releases_en.md b/docs/installation/releases_en.md
index 39749b40b..918ae83e1 100644
--- a/docs/installation/releases_en.md
+++ b/docs/installation/releases_en.md
@@ -110,10 +110,17 @@ su pleroma -s $SHELL -lc "./bin/pleroma_ctl instance gen --output /etc/pleroma/c
# Create the postgres database
psql -U postgres -d postgres -f /tmp/setup_db.psql
+# If you have installed RUM indexes add
+# `config :pleroma, :database, rum_enabled: true`
+# to the end of /etc/pleroma/config.exs before proceeding
+
# Create the database schema
./bin/pleroma_ctl create
./bin/pleroma_ctl migrate
+# If you have installed RUM indexes also run
+./bin/pleroma_ctl migrate --migrations-path priv/repo/optional_migrations/rum_indexing/
+
# Start the instance to verify that everything is working as expected
./bin/pleroma daemon