]> git.immae.eu Git - github/wallabag/wallabag.git/blob - docs/en/user/upgrade.rst
Prepare wallabag 2.0.8
[github/wallabag/wallabag.git] / docs / en / user / upgrade.rst
1 Upgrade wallabag
2 ================
3
4 Upgrade on a dedicated web server
5 ---------------------------------
6
7 The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.0.8`` by the last release number):
8
9 ::
10
11 git fetch origin
12 git fetch --tags
13 git checkout 2.0.8
14 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
15 php bin/console cache:clear --env=prod
16
17 Upgrade on a shared hosting
18 ---------------------------
19
20 Backup your ``app/config/parameters.yml`` file.
21
22 Download the last release of wallabag:
23
24 .. code-block:: bash
25
26 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
27
28 (md5 hash of the package: ``18aadd1003a08eb11f5341b9755029f8``)
29
30 Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
31
32 If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
33
34 Empty ``var/cache`` folder.