diff options
| author | yalh76 <yalh@yahoo.com> | 2019-05-10 02:00:48 +0200 |
|---|---|---|
| committer | yalh76 <yalh@yahoo.com> | 2019-05-10 02:00:48 +0200 |
| commit | 2987ccf8b3aa393dbef79b874dfe5839a0ee10da (patch) | |
| tree | 67aea4330d8c46fe8fc502f2091f88264b2bcc20 /README_fr.md | |
| parent | eeec0653ac3e2c38bf6c46c93fdecf28d8dae1ab (diff) | |
| parent | 11f2ee86cdad204655f6b5ea398c65e9693ea381 (diff) | |
| download | mastodon_ynh-2987ccf8b3aa393dbef79b874dfe5839a0ee10da.tar.gz mastodon_ynh-2987ccf8b3aa393dbef79b874dfe5839a0ee10da.tar.bz2 mastodon_ynh-2987ccf8b3aa393dbef79b874dfe5839a0ee10da.zip | |
Merge branch 'develop'
Diffstat (limited to 'README_fr.md')
| -rw-r--r-- | README_fr.md | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/README_fr.md b/README_fr.md new file mode 100644 index 0000000..6ee9aba --- /dev/null +++ b/README_fr.md @@ -0,0 +1,96 @@ +# Mastodon pour YunoHost + +[](https://dash.yunohost.org/appci/app/mastodon) +[](https://install-app.yunohost.org/?app=mastodon) + +*[Read this readme in english.](./README.md)* + +> *Ce package vous permet d'installer mastodon rapidement et simplement sur un serveur Yunohost. +Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* + +:warning: MAJ 05/06/17 :Cette application peut maintenant fonctionner sur ARM, mais l'installation prend plusieurs heures et il faut ajouter un swapfile de 1Go. + +:warning: Cette application utilise les packages backports de Debian, nous vous recommendons de ne pas installer cette application directement en production + +## Vue d'ensemble +Mastodon est un réseau social gratuit et open source. Une alternative décentralisée aux plates-formes commerciales, elle évite les risques d'une seule société qui monopolise votre communication. Choisissez un serveur sur lequel vous faites confiance - selon votre choix, vous pouvez interagir avec tous les autres. N'importe qui peut exécuter sa propre instance de Mastodon et participer au réseau social de façon transparente. + +**Version incluse:** 2.7.4 + +## Captures d'écran + + + +## Configuration + +#### Ajout d'un "swapfile" si vous avez moins de 2Go de RAM +``` +sudo dd if=/dev/zero of=/swapfile bs=1024 count=1024000 +sudo chmod 600 /swapfile +sudo mkswap /swapfile +sudo swapon /swapfile +``` +ajouter cette ligne dans /etc/fstab +``` +/swapfile none swap sw 0 0 +``` + +### Installation + +#### Utilisation de __screen__ en cas de déconnection +``` +$ sudo apt-get install screen +$ screen +$ sudo yunohost app install https://github.com/YunoHost-Apps/mastodon_ynh.git +``` +Récuperer l'installation après une deconnection: +``` +$ screen -d +$ screen -r +``` +L'utilisateur admin est crée automatiquement comme: user@domain.tld + +### Mise à jour +#### Utilisation de __screen__ fortement recommandé + +`$ sudo yunohost app upgrade --verbose mastodon -u https://github.com/YunoHost-Apps/mastodon_ynh.git` + +## Recommandations + +Vous ne pouvez pas installer Mastodon en subdirectory, vous devez obligatoirement utiliser un domaine ou un sous-domaine pour cette application. + +Il semble important de fermer les inscriptions pour votre Mastodon, pour que ça reste une instance privé. Nous vous invitons à bloquer les instances distantes malfaisantes depuis l'interface d'administration. Vous pouvez également ajouter un texte sur votre page d'accueil dans l'administration. + +## Documentation + + * Documentation officielle: https://docs.joinmastodon.org/ + +## Caractéristiques spécifiques YunoHost + +#### Supported architectures + +* x86-64b - [](https://ci-apps.yunohost.org/ci/apps/mastodon/) +* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/mastodon/) +* Jessie x86-64b - [](https://ci-stretch.nohost.me/ci/apps/mastodon/) + +## Links + + * Signaler un bug: https://github.com/YunoHost-Apps/mastodon_ynh/issues + * Site de l'application: https://joinmastodon.org/ + * Site Github de l'application: https://github.com/tootsuite/mastodon + * Site web YunoHost: https://yunohost.org/ + +--- + +Informations pour les développeurs +---------------- + +**Seulement si vous voulez utiliser une branche de test pour le codage, au lieu de fusionner directement dans la banche principale.** +Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/mastodon_ynh/tree/testing). + +Pour essayer la branche testing, procédez comme suit. +``` +sudo yunohost app install https://github.com/YunoHost-Apps/mastodon_ynh/tree/testing --debug +ou +sudo yunohost app upgrade mastodon -u https://github.com/YunoHost-Apps/mastodon_ynh/tree/testing --debug +``` |
