mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 10:22:14 +01:00
Update install documentation
This commit is contained in:
parent
2b9c5097d4
commit
94d1dae4ef
@ -86,6 +86,8 @@ Führe dieses Kommando aus, um das neueste Paket herunterzuladen und zu entpacke
|
|||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(md5 hash: ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Jetzt lese die Dokumentation, um einen Virtualhost zu erstellen, dann greife auf dein wallabag zu.
|
Jetzt lese die Dokumentation, um einen Virtualhost zu erstellen, dann greife auf dein wallabag zu.
|
||||||
Wenn du die Datenbankkonfiguration eingestellt hast, MySQL oder PostgreSQL zu nutzen, musst du einen Nutzer über das folgende Kommando erstellen ``php bin/console wallabag:install --env=prod``.
|
Wenn du die Datenbankkonfiguration eingestellt hast, MySQL oder PostgreSQL zu nutzen, musst du einen Nutzer über das folgende Kommando erstellen ``php bin/console wallabag:install --env=prod``.
|
||||||
|
|
||||||
|
@ -4,13 +4,13 @@ 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.3`` 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.0.7`` mit der neuesten Releasenummer):
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout 2.0.3
|
git checkout 2.0.7
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||||
php bin/console cache:clear --env=prod
|
php bin/console cache:clear --env=prod
|
||||||
|
|
||||||
@ -25,6 +25,8 @@ Lade das neueste Release von wallabag herunter:
|
|||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(md5 hash: ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Entpacke das Archiv in deinen wallabag Ordner und ersetze ``app/config/parameters.yml`` mit deiner Datei.
|
Entpacke das Archiv in deinen wallabag Ordner und ersetze ``app/config/parameters.yml`` mit deiner Datei.
|
||||||
|
|
||||||
Wenn du SQLite nutzt, musst auch das ``data/`` Verzeichnis in die neue Installation kopieren.
|
Wenn du SQLite nutzt, musst auch das ``data/`` Verzeichnis in die neue Installation kopieren.
|
||||||
|
@ -85,6 +85,8 @@ Execute this command to download and extract the latest package:
|
|||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(md5 hash of the package: ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Now, read the following documentation to create your virtual host, then access your wallabag.
|
Now, read the following documentation to create your virtual host, then access your wallabag.
|
||||||
If you changed the database configuration to use MySQL or PostgreSQL, you need to create a user via this command ``php bin/console wallabag:install --env=prod``.
|
If you changed the database configuration to use MySQL or PostgreSQL, you need to create a user via this command ``php bin/console wallabag:install --env=prod``.
|
||||||
|
|
||||||
|
@ -4,27 +4,29 @@ 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.3`` 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.0.7`` by the last release number):
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout 2.0.3
|
git checkout 2.0.7
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||||
php bin/console cache:clear --env=prod
|
php bin/console cache:clear --env=prod
|
||||||
|
|
||||||
Upgrade on a shared hosting
|
Upgrade on a shared hosting
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
Backup your ``app/config/parameters.yml`` file.
|
Backup your ``app/config/parameters.yml`` file.
|
||||||
|
|
||||||
Download the last release of wallabag:
|
Download the last release of wallabag:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(md5 hash of the package: ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
|
Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
|
||||||
|
|
||||||
If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
|
If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
|
||||||
|
@ -82,6 +82,8 @@ Exécutez cette commande pour télécharger et décompresser l'archive :
|
|||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(hash md5 de l'archive : ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Maintenant, lisez la documentation ci-dessous pour crééer un virtual host. Accédez ensuite à votre installation de wallabag.
|
Maintenant, lisez la documentation ci-dessous pour crééer un virtual host. Accédez ensuite à votre installation de wallabag.
|
||||||
Si vous avez changé la configuration pour modifier le type de stockage (MySQL ou PostgreSQL), vous devrez vous créer un utilisateur via la commande ``php bin/console wallabag:install --env=prod``.
|
Si vous avez changé la configuration pour modifier le type de stockage (MySQL ou PostgreSQL), vous devrez vous créer un utilisateur via la commande ``php bin/console wallabag:install --env=prod``.
|
||||||
|
|
||||||
|
@ -4,13 +4,13 @@ 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.3`` 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.0.7`` 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.3
|
git checkout 2.0.7
|
||||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||||
php bin/console cache:clear --env=prod
|
php bin/console cache:clear --env=prod
|
||||||
|
|
||||||
@ -19,12 +19,14 @@ Mise à jour sur un hébergement mutualisé
|
|||||||
|
|
||||||
Effectuez une sauvegarde du fichier ``app/config/parameters.yml``.
|
Effectuez une sauvegarde du fichier ``app/config/parameters.yml``.
|
||||||
|
|
||||||
Téléchargez la dernière version de wallabag :
|
Téléchargez la dernière version de wallabag :
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
|
||||||
|
|
||||||
|
(hash md5 de l'archive : ``18aadd1003a08eb11f5341b9755029f8``)
|
||||||
|
|
||||||
Décompressez l'archive dans votre répertoire d'installation et remplacez le fichier ``app/config/parameters.yml`` avec le votre.
|
Décompressez l'archive dans votre répertoire d'installation et remplacez le fichier ``app/config/parameters.yml`` avec le votre.
|
||||||
|
|
||||||
Si vous utilisez SQLite, vous devez également conserver le contenu du répertoire ``data/``.
|
Si vous utilisez SQLite, vous devez également conserver le contenu du répertoire ``data/``.
|
||||||
|
Loading…
Reference in New Issue
Block a user