You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
760 B
Markdown

---
title: Updating your instance
icon: arrow-up
summary: 'Plume is still unstable and regularly gets new features and bug fixes. Keeping your
instance up-to-date is important.'
---
To update your instance, run these commands with `plume` user if you created it, or with your default user, in the Plume directory.
Replace DATABASE with either postgres or sqlite depending on what you want to use.
```bash
git pull origin master
cargo web deploy -p plume-front
cargo install --force --no-default-features --features DATABASE && cargo install --path plume-cli --force --features DATABASE
# Run the migrations
diesel migration run
6 years ago
# If you are using sysvinit
6 years ago
sudo service plume restart
# If you are using systemd
6 years ago
sudo systemctl restart plume
```
That's it!