1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Fix wallabag version in documentation

This commit is contained in:
Nicolas Lœuillet 2016-09-15 14:26:30 +02:00
parent 8fed8d1bac
commit ce0a32229a
6 changed files with 13 additions and 31 deletions

View file

@ -47,20 +47,13 @@ Install Composer:
You can find specific instructions `here <https://getcomposer.org/doc/00-intro.md>`__.
You also need to install node.js (via `the Download page <https://nodejs.org/en/download/>`__), npm (already install with node.js), bower and grunt:
::
npm install -g bower
npm install -g grunt-cli
To install wallabag itself, you must run the following commands:
::
git clone https://github.com/wallabag/wallabag.git
cd wallabag
git checkout 2.1
git checkout 2.1.0
./install.sh
To start PHP's build-in server and test if everything did install correctly, you can do:

View file

@ -4,15 +4,14 @@ Upgrade wallabag
Upgrade on a dedicated web server
---------------------------------
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):
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.1.0`` by the last release number):
::
git fetch origin
git fetch --tags
git checkout 2.0.8
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
php bin/console cache:clear --env=prod
git checkout 2.1.0
./install.sh
Upgrade on a shared hosting
---------------------------