diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-05-07 11:10:21 +0200 |
---|---|---|
committer | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-05-07 11:10:21 +0200 |
commit | 1556c925a42619c1298edebb73eb86c009b3f3c8 (patch) | |
tree | 2e893a9ed9ab1fb28db290d3643d7945e0ad611b /docs/en/user/upgrade.rst | |
parent | f54de6817ea320e6d92bea368123b2fb1395d95f (diff) | |
parent | e0f4f25fd6fba6f41532e9bf5cb6fa4c515c7a46 (diff) | |
download | wallabag-1556c925a42619c1298edebb73eb86c009b3f3c8.tar.gz wallabag-1556c925a42619c1298edebb73eb86c009b3f3c8.tar.zst wallabag-1556c925a42619c1298edebb73eb86c009b3f3c8.zip |
Merge pull request #2016 from wallabag/update-documentation
Update documentation
Diffstat (limited to 'docs/en/user/upgrade.rst')
-rw-r--r-- | docs/en/user/upgrade.rst | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/en/user/upgrade.rst b/docs/en/user/upgrade.rst index e4735631..7782dc8a 100644 --- a/docs/en/user/upgrade.rst +++ b/docs/en/user/upgrade.rst | |||
@@ -5,6 +5,7 @@ Upgrade on a dedicated web server | |||
5 | --------------------------------- | 5 | --------------------------------- |
6 | 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.3`` by the last release number): | 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.3`` by the last release number): |
8 | |||
8 | :: | 9 | :: |
9 | 10 | ||
10 | git fetch origin | 11 | git fetch origin |
@@ -12,12 +13,19 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba | |||
12 | git checkout 2.0.3 | 13 | git checkout 2.0.3 |
13 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist | 14 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist |
14 | php bin/console cache:clear --env=prod | 15 | php bin/console cache:clear --env=prod |
15 | |||
16 | 16 | ||
17 | Upgrade on a shared hosting | 17 | Upgrade on a shared hosting |
18 | --------------------------- | 18 | --------------------------- |
19 | 19 | ||
20 | Backup your ``app/config/parameters.yml`` file. Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours. | 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 | Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours. | ||
21 | 29 | ||
22 | If you use SQLite, you must also copy your ``data/`` folder inside the new installation. | 30 | If you use SQLite, you must also copy your ``data/`` folder inside the new installation. |
23 | 31 | ||