diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-22 02:20:55 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-22 02:21:02 +0300 |
commit | 23608149bc72d740e6259e460e43ff276583516d (patch) | |
tree | 464fd074e692d0943bc6fd1c3b92af8601d209e4 | |
parent | d1d648b0ecfb0924d7921796d7edef9512e030b0 (diff) | |
download | pleroma-23608149bc72d740e6259e460e43ff276583516d.tar.gz |
Execute migration commands as the pleroma user and add a note about the need to uncomment the RUM command
-rw-r--r-- | docs/installation/releases_en.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/installation/releases_en.md b/docs/installation/releases_en.md index 10d8879af..31e3ac30d 100644 --- a/docs/installation/releases_en.md +++ b/docs/installation/releases_en.md @@ -114,20 +114,20 @@ su postgres -s $SHELL -lc "psql -f /tmp/setup_db.psql" # to the end of /etc/pleroma/config.exs before proceeding # Create the database schema -./bin/pleroma_ctl create -./bin/pleroma_ctl migrate +su pleroma -s $SHELL -lc "./bin/pleroma_ctl create" +su pleroma -s $SHELL -lc "./bin/pleroma_ctl migrate" -# If you have installed RUM indexes also run -# ./bin/pleroma_ctl migrate --migrations-path priv/repo/optional_migrations/rum_indexing/ +# If you have installed RUM indexes uncommend and run +# su pleroma -s $SHELL -lc "./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 +su pleroma -s $SHELL -lc "./bin/pleroma daemon" # Wait for about 20 seconds and query the instance endpoint, if it shows your uri, name and email correctly, you are configured correctly sleep 20 && curl http://localhost:4000/api/v1/instance # Stop the instance -./bin/pleroma stop +su pleroma -s $SHELL -lc "./bin/pleroma stop" ``` ### Setting up nginx and getting Let's Encrypt SSL certificaties |