X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=doc%2FDownload-and-Installation.md;h=32df898462732f780f64fa0b1db56d95ef8aecd9;hb=3cc8c898307ad53507a128db2b11238be2641c32;hp=77af25eb0ae7a951700c4d2c936c8e2f9d4dadba;hpb=75f7adee19f3cced8a2d5eb134e9d6723a69a474;p=github%2Fshaarli%2FShaarli.git diff --git a/doc/Download-and-Installation.md b/doc/Download-and-Installation.md index 77af25eb..32df8984 100644 --- a/doc/Download-and-Installation.md +++ b/doc/Download-and-Installation.md @@ -8,26 +8,31 @@ Several releases are available: -------------------------------------------------------- ## Latest release (recommended) - +### Download as an archive Get the latest released version from the [releases](https://github.com/shaarli/Shaarli/releases) page.[](.html) -The current latest released version is `v0.7.0`. +**Download our *shaarli-full* archive** to include dependencies. -### Download as an archive +The current latest released version is `v0.8.0` -As a .zip archive: +Or in command lines: ```bash -$ wget https://github.com/shaarli/Shaarli/archive/v0.7.0.zip -$ unzip Shaarli-v0.7.0.zip -$ mv Shaarli-v0.7.0 /path/to/shaarli/ +$ wget https://github.com/shaarli/Shaarli/releases/download/v0.8.0/shaarli-v0.8.0-full.zip +$ unzip shaarli-v0.8.0-full.zip +$ mv Shaarli /path/to/shaarli/ ``` - | ! |In most cases, download Shaarli from the [releases](https://github.com/shaarli/Shaarli/releases) page. Cloning using `git` or downloading Github branches as zip files requires additional steps (see below).|[](.html) |-----|--------------------------| +### Using git +``` +mkdir -p /path/to/shaarli && cd /path/to/shaarli/ +git clone -b v0.8.0 https://github.com/shaarli/Shaarli.git . +composer update --no-dev +``` --------------------------------------------------------