From 6f29c109689d659d093a8d67dc7de870589edc6b Mon Sep 17 00:00:00 2001 From: Bat Date: Sat, 1 Sep 2018 16:34:49 +0100 Subject: [PATCH] Docs: updating your instance --- docs/README.md | 1 + docs/UPDATE.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 docs/UPDATE.md diff --git a/docs/README.md b/docs/README.md index 557b157..2133ad7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,6 @@ # Plume documentation - [Installing Plume (for development or production)](INSTALL.md) +- [Updating your instance](UPDATE.md) - [Development Guide](DEVELOPMENT.md) - [Making Plume available in your language](INTERNATIONALIZATION.md) diff --git a/docs/UPDATE.md b/docs/UPDATE.md new file mode 100644 index 0000000..4e851e6 --- /dev/null +++ b/docs/UPDATE.md @@ -0,0 +1,15 @@ +# Updating your instance + +To update your instance, run these commands with `plume` user if you created it, or with your default user, in the Plume directory. + +``` +git pull origin master + +# If you are not using systemd +cargo run + +# If you are using systemd +service plume restart +``` + +That's it!