From 8fdb5e5766a6bf5970f268200a6c21fd39693637 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 3 Oct 2016 14:21:49 +0200 Subject: Re-add wallabag:install --- docs/en/user/installation.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/en/user') diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 7954fe0b..82fa6f4e 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst @@ -55,6 +55,7 @@ To install wallabag itself, you must run the following commands: cd wallabag git checkout 2.1.0 ASSETS=build ./install.sh + php bin/console wallabag:install --env=prod To start PHP's build-in server and test if everything did install correctly, you can do: -- cgit v1.2.3 From 88d8125a5fa3b5c6c91cb22fc2bef1243d7391fc Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 3 Oct 2016 14:44:12 +0200 Subject: Ensure cache is clear before upgrading If we changed some namespace / classes, we need to refresh the cache before anything else. --- docs/en/user/upgrade-2.0.x-2.0.y.rst | 1 + docs/en/user/upgrade-2.0.x-2.1.y.rst | 1 + 2 files changed, 2 insertions(+) (limited to 'docs/en/user') 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 index 6a0818b3..3391c2cd 100644 --- a/docs/en/user/upgrade-2.0.x-2.0.y.rst +++ b/docs/en/user/upgrade-2.0.x-2.0.y.rst @@ -8,6 +8,7 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba :: + rm -rf var/cache/* git fetch origin git fetch --tags git checkout 2.0.8 diff --git a/docs/en/user/upgrade-2.0.x-2.1.y.rst b/docs/en/user/upgrade-2.0.x-2.1.y.rst index 63a77e7c..234045ba 100644 --- a/docs/en/user/upgrade-2.0.x-2.1.y.rst +++ b/docs/en/user/upgrade-2.0.x-2.1.y.rst @@ -11,6 +11,7 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba :: + rm -rf var/cache/* git fetch origin git fetch --tags git checkout 2.1.0 -- cgit v1.2.3