mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-05 18:27:37 +01:00
Fix wallabag version in documentation
This commit is contained in:
parent
8fed8d1bac
commit
ce0a32229a
@ -54,9 +54,8 @@ Um wallabag selbst zu installieren, musst du die folgenden Kommandos ausführen:
|
|||||||
|
|
||||||
git clone https://github.com/wallabag/wallabag.git
|
git clone https://github.com/wallabag/wallabag.git
|
||||||
cd wallabag
|
cd wallabag
|
||||||
git checkout 2.0.8
|
git checkout 2.1.0
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
./install.sh
|
||||||
php bin/console wallabag:install --env=prod
|
|
||||||
|
|
||||||
Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen:
|
Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen:
|
||||||
|
|
||||||
|
@ -4,15 +4,14 @@ Wallabag updaten
|
|||||||
Update auf einem dedizierten Webserver
|
Update auf einem dedizierten Webserver
|
||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
|
||||||
Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag Installation auf die neueste Version upzudaten, führe die folgenden Kommandos in deinem wallabag Ordner aus (ersetze ``2.0.8`` mit der neuesten Releasenummer):
|
Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag Installation auf die neueste Version upzudaten, führe die folgenden Kommandos in deinem wallabag Ordner aus (ersetze ``2.1.0`` mit der neuesten Releasenummer):
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout 2.0.8
|
git checkout 2.1.0
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
./install.sh
|
||||||
php bin/console cache:clear --env=prod
|
|
||||||
|
|
||||||
Update auf einem Shared Webhosting
|
Update auf einem Shared Webhosting
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
@ -47,20 +47,13 @@ Install Composer:
|
|||||||
|
|
||||||
You can find specific instructions `here <https://getcomposer.org/doc/00-intro.md>`__.
|
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:
|
To install wallabag itself, you must run the following commands:
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git clone https://github.com/wallabag/wallabag.git
|
git clone https://github.com/wallabag/wallabag.git
|
||||||
cd wallabag
|
cd wallabag
|
||||||
git checkout 2.1
|
git checkout 2.1.0
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|
||||||
To start PHP's build-in server and test if everything did install correctly, you can do:
|
To start PHP's build-in server and test if everything did install correctly, you can do:
|
||||||
|
@ -4,15 +4,14 @@ Upgrade wallabag
|
|||||||
Upgrade on a dedicated web server
|
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 origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout 2.0.8
|
git checkout 2.1.0
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
./install.sh
|
||||||
php bin/console cache:clear --env=prod
|
|
||||||
|
|
||||||
Upgrade on a shared hosting
|
Upgrade on a shared hosting
|
||||||
---------------------------
|
---------------------------
|
||||||
|
@ -45,20 +45,13 @@ Installation de Composer :
|
|||||||
|
|
||||||
Vous pouvez trouver des instructions spécifiques `ici (en anglais) <https://getcomposer.org/doc/00-intro.md>`__.
|
Vous pouvez trouver des instructions spécifiques `ici (en anglais) <https://getcomposer.org/doc/00-intro.md>`__.
|
||||||
|
|
||||||
Vous devez aussi installer node.js (via `la page de téléchargements <https://nodejs.org/en/download/>`__), npm (déjà installé avec node.js), bower et grunt:
|
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
npm install -g bower
|
|
||||||
npm install -g grunt-cli
|
|
||||||
|
|
||||||
Pour installer wallabag, vous devez exécuter ces commandes :
|
Pour installer wallabag, vous devez exécuter ces commandes :
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git clone https://github.com/wallabag/wallabag.git
|
git clone https://github.com/wallabag/wallabag.git
|
||||||
cd wallabag
|
cd wallabag
|
||||||
git checkout 2.1
|
git checkout 2.1.0
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|
||||||
Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter :
|
Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter :
|
||||||
|
@ -4,15 +4,14 @@ Mettre à jour wallabag
|
|||||||
Mise à jour sur un serveur dédié
|
Mise à jour sur un serveur dédié
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|
||||||
La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.0.8`` par le numéro de la dernière version) :
|
La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.1.0`` par le numéro de la dernière version) :
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout 2.0.8
|
git checkout 2.1.0
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
./install.sh
|
||||||
php bin/console cache:clear --env=prod
|
|
||||||
|
|
||||||
Mise à jour sur un hébergement mutualisé
|
Mise à jour sur un hébergement mutualisé
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user