aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/user/upgrade-2.0.x-2.0.y.rst
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-28 11:13:20 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-28 11:13:20 +0200
commiteef8aeec8fa56519363e90977900f198ff3bd19b (patch)
treeb3d3f82dfdde7c38dbbc0831c5c5bff1b6535c11 /docs/en/user/upgrade-2.0.x-2.0.y.rst
parent084fb0d303efc6edd0bfbf43d96b6cbe48acb2b8 (diff)
downloadwallabag-eef8aeec8fa56519363e90977900f198ff3bd19b.tar.gz
wallabag-eef8aeec8fa56519363e90977900f198ff3bd19b.tar.zst
wallabag-eef8aeec8fa56519363e90977900f198ff3bd19b.zip
Reordered upgrade documentation
Diffstat (limited to 'docs/en/user/upgrade-2.0.x-2.0.y.rst')
-rw-r--r--docs/en/user/upgrade-2.0.x-2.0.y.rst34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/en/user/upgrade-2.0.x-2.0.y.rst b/docs/en/user/upgrade-2.0.x-2.0.y.rst
new file mode 100644
index 00000000..6a0818b3
--- /dev/null
+++ b/docs/en/user/upgrade-2.0.x-2.0.y.rst
@@ -0,0 +1,34 @@
1Upgrade from 2.0.x to 2.0.y
2===========================
3
4Upgrade on a dedicated web server
5---------------------------------
6
7The 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
17Upgrade on a shared hosting
18---------------------------
19
20Backup your ``app/config/parameters.yml`` file.
21
22Download 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 2.0.8 package: ``4f84c725d1d6e3345eae0a406115e5ff``)
29
30Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
31
32If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
33
34Empty ``var/cache`` folder.