diff --git a/docs/README.md b/docs/README.md index 557b1576..2133ad71 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 00000000..4e851e60 --- /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!