mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
commit
b5f0e92d4a
2 changed files with 13 additions and 14 deletions
20
README_fr.md
20
README_fr.md
|
@ -5,15 +5,15 @@ It shall NOT be edited by hand.
|
||||||
|
|
||||||
# Rocket.Chat pour YunoHost
|
# Rocket.Chat pour YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/rocketchat)  
|
[](https://dash.yunohost.org/appci/app/rocketchat)  
|
||||||
[](https://install-app.yunohost.org/?app=rocketchat)
|
[](https://install-app.yunohost.org/?app=rocketchat)
|
||||||
|
|
||||||
*[Read this readme in english.](./README.md)*
|
*[Read this readme in english.](./README.md)*
|
||||||
|
|
||||||
> *Ce package vous permet d'installer Rocket.Chat rapidement et simplement sur un serveur YunoHost.
|
> *Ce package vous permet d’installer Rocket.Chat 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.*
|
Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l’installer et en profiter.*
|
||||||
|
|
||||||
## Vue d'ensemble
|
## Vue d’ensemble
|
||||||
|
|
||||||
Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données.
|
Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données.
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@ Rocket.Chat est une plate-forme de communication open source entièrement person
|
||||||
|
|
||||||
**Démo :** https://cloud.rocket.chat/trial
|
**Démo :** https://cloud.rocket.chat/trial
|
||||||
|
|
||||||
## Captures d'écran
|
## Captures d’écran
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Avertissements / informations importantes
|
## Avertissements / informations importantes
|
||||||
|
|
||||||
|
@ -60,10 +60,10 @@ En plus de l'interface Web, vous pouvez également télécharger les clients Roc
|
||||||
|
|
||||||
## Documentations et ressources
|
## Documentations et ressources
|
||||||
|
|
||||||
* Site officiel de l'app : <https://rocket.chat/>
|
* Site officiel de l’app : <https://rocket.chat/>
|
||||||
* Documentation officielle utilisateur : <https://docs.rocket.chat/guides/user-guides>
|
* Documentation officielle utilisateur : <https://docs.rocket.chat/guides/user-guides>
|
||||||
* Documentation officielle de l'admin : <https://docs.rocket.chat/>
|
* Documentation officielle de l’admin : <https://docs.rocket.chat/>
|
||||||
* Dépôt de code officiel de l'app : <https://github.com/RocketChat/Rocket.Chat>
|
* Dépôt de code officiel de l’app : <https://github.com/RocketChat/Rocket.Chat>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_rocketchat>
|
* Documentation YunoHost pour cette app : <https://yunohost.org/app_rocketchat>
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/rocketchat_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/rocketchat_ynh/issues>
|
||||||
|
|
||||||
|
@ -79,4 +79,4 @@ ou
|
||||||
sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug
|
sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
**Plus d’infos sur le packaging d’applications :** <https://yunohost.org/packaging_apps>
|
|
@ -18,7 +18,6 @@ pkg_dependencies="apt-transport-https build-essential gzip curl fontconfig graph
|
||||||
#=================================================
|
#=================================================
|
||||||
# EXPERIMENTAL HELPERS
|
# EXPERIMENTAL HELPERS
|
||||||
#=================================================
|
#=================================================
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
readonly YNH_DEFAULT_MONGO_VERSION=4.4
|
readonly YNH_DEFAULT_MONGO_VERSION=4.4
|
||||||
# Declare the actual MongoDB version to use: 4.4 ; 5.0
|
# Declare the actual MongoDB version to use: 4.4 ; 5.0
|
||||||
|
@ -109,7 +108,7 @@ ynh_mongo_exec() {
|
||||||
database=""
|
database=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mongosh --quiet $user $password $authenticationdatabase $host $port <<EOF
|
mongosh --quiet --username $user --password $password --authenticationDatabase $authenticationdatabase --host $host --port $port <<EOF
|
||||||
$database
|
$database
|
||||||
${command}
|
${command}
|
||||||
quit()
|
quit()
|
||||||
|
@ -123,7 +122,7 @@ EOF
|
||||||
database=""
|
database=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mongosh --quiet $database $user $password $authenticationdatabase $host $port --eval="$command"
|
mongosh --quiet $database --username $user --password $password --authenticationDatabase $authenticationdatabase --host $host --port $port --eval="$command"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -333,7 +332,7 @@ ynh_install_mongo() {
|
||||||
mongo_version="${mongo_version:-$YNH_MONGO_VERSION}"
|
mongo_version="${mongo_version:-$YNH_MONGO_VERSION}"
|
||||||
|
|
||||||
ynh_print_info --message="Installing MongoDB Community Edition..."
|
ynh_print_info --message="Installing MongoDB Community Edition..."
|
||||||
ynh_install_extra_app_dependencies --repo="deb http://repo.mongodb.org/apt/debian bullseye/mongodb-org/$mongo_version main" --package="mongodb-org mongodb-org-server mongodb-org-tools mongodb-mongosh" --key="https://www.mongodb.org/static/pgp/server-$mongo_version.asc"
|
ynh_install_extra_app_dependencies --repo="deb http://repo.mongodb.org/apt/debian buster/mongodb-org/$mongo_version main" --package="mongodb-org mongodb-org-server mongodb-org-tools mongodb-mongosh" --key="https://www.mongodb.org/static/pgp/server-$mongo_version.asc"
|
||||||
mongodb_servicename=mongod
|
mongodb_servicename=mongod
|
||||||
|
|
||||||
# Make sure MongoDB is started and enabled
|
# Make sure MongoDB is started and enabled
|
||||||
|
|
Loading…
Add table
Reference in a new issue