• 0.3.0-alpha-2 3ad1f6968c

    0.3.0 (Alpha 2) 사전 릴리즈

    elegaanz released this 2019-04-19 14:49:46 +00:00 | 1365 commits to main since this release

    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
    # Or
    service plume.service restart
    
    다운로드