diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2016-09-15 14:26:30 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2016-09-19 15:22:05 +0200 |
commit | ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3 (patch) | |
tree | b17180badb278142f9652d9cff25f1e8caa9047b /docs/de/user | |
parent | 8fed8d1bacbbcbf606a94497c5b58f49068bd6a3 (diff) | |
download | wallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.tar.gz wallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.tar.zst wallabag-ce0a32229a8d139115ccd1d247a0ee4f1fedc8a3.zip |
Fix wallabag version in documentation
Diffstat (limited to 'docs/de/user')
-rw-r--r-- | docs/de/user/installation.rst | 5 | ||||
-rw-r--r-- | docs/de/user/upgrade.rst | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/docs/de/user/installation.rst b/docs/de/user/installation.rst index 2e3108be..05602bf3 100644 --- a/docs/de/user/installation.rst +++ b/docs/de/user/installation.rst | |||
@@ -54,9 +54,8 @@ Um wallabag selbst zu installieren, musst du die folgenden Kommandos ausführen: | |||
54 | 54 | ||
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.0.8 | 57 | git checkout 2.1.0 |
58 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist | 58 | ./install.sh |
59 | php bin/console wallabag:install --env=prod | ||
60 | 59 | ||
61 | Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen: | 60 | Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen: |
62 | 61 | ||
diff --git a/docs/de/user/upgrade.rst b/docs/de/user/upgrade.rst index c04b68f3..953c84ff 100644 --- a/docs/de/user/upgrade.rst +++ b/docs/de/user/upgrade.rst | |||
@@ -4,15 +4,14 @@ Wallabag updaten | |||
4 | Update auf einem dedizierten Webserver | 4 | Update auf einem dedizierten Webserver |
5 | -------------------------------------- | 5 | -------------------------------------- |
6 | 6 | ||
7 | 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): | 7 | 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): |
8 | 8 | ||
9 | :: | 9 | :: |
10 | 10 | ||
11 | git fetch origin | 11 | git fetch origin |
12 | git fetch --tags | 12 | git fetch --tags |
13 | git checkout 2.0.8 | 13 | git checkout 2.1.0 |
14 | SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist | 14 | ./install.sh |
15 | php bin/console cache:clear --env=prod | ||
16 | 15 | ||
17 | Update auf einem Shared Webhosting | 16 | Update auf einem Shared Webhosting |
18 | ---------------------------------- | 17 | ---------------------------------- |