Docs: updating your instance

This commit is contained in:
Bat 2018-09-01 16:34:49 +01:00
parent cea548b821
commit 6f29c10968
2 changed files with 16 additions and 0 deletions

View file

@ -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)

15
docs/UPDATE.md Normal file
View file

@ -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!