Plume v0.3.0-alpha Release Notes

Release Date: 2019-04-19 // about 5 years ago
  • Notable changes

    ๐Ÿ‘€ For a more detailed changelog, please see the New Plume Alpha article.

    How to install a new instance

    ๐Ÿ“š Check out our installation documentation.

    โšก๏ธ How to update your instance

    ๐Ÿ†“ We consider you were running the first alpha, and you installed Plume from source. If it is not the case, some commands may be unnecessary (feel free to ask on Matrix if you are not sure what to do).

    โš™ Run these commands, replacing DATABASE with either postgres or sqlite depending on what you use.

    cargo install diesel\_cli --no-default-features --features DATABASE --version '=1.3.0' --force cargo install cargo-web cargo web deploy -p plume-front cargo install --no-default-features --features DATABASE --force cargo install --no-default-features --features DATABASE --path plume-cli --force diesel migration run plm search init
    

    โšก๏ธ Then update your config to add mail server settings:

    MAIL\_SERVER=smtp.example.org MAIL\_USER=example MAIL\_PASSWORD=123456 MAIL\_HELO\_NAME=example.org
    

    Finally, restart plume with one of these commands, depending on your init system:

    sudo systemctl restart plume# Or/etc/init.d/plume stop && /etc/init.d/plume start# Orservice plume.service restart