diff options
Diffstat (limited to 'docs/en/user')
-rw-r--r-- | docs/en/user/installation.rst | 2 | ||||
-rw-r--r-- | docs/en/user/upgrade-2.0.x-2.1.y.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 8a26a376..833a36a6 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst | |||
@@ -55,7 +55,7 @@ To install wallabag itself, you must run the following commands: | |||
55 | git clone https://github.com/wallabag/wallabag.git | 55 | git clone https://github.com/wallabag/wallabag.git |
56 | cd wallabag | 56 | cd wallabag |
57 | git checkout 2.1.0 | 57 | git checkout 2.1.0 |
58 | ASSETS=build ./install.sh | 58 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist |
59 | php bin/console wallabag:install --env=prod | 59 | php bin/console wallabag:install --env=prod |
60 | 60 | ||
61 | To start PHP's build-in server and test if everything did install correctly, you can do: | 61 | To start PHP's build-in server and test if everything did install correctly, you can do: |
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 234045ba..ce5b5441 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 | |||
@@ -15,7 +15,7 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba | |||
15 | git fetch origin | 15 | git fetch origin |
16 | git fetch --tags | 16 | git fetch --tags |
17 | git checkout 2.1.0 | 17 | git checkout 2.1.0 |
18 | ASSETS=build ./install.sh | 18 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist |
19 | php bin/console doctrine:migrations:migrate --env=prod | 19 | php bin/console doctrine:migrations:migrate --env=prod |
20 | php bin/console cache:clear --env=prod | 20 | php bin/console cache:clear --env=prod |
21 | 21 | ||