diff --git a/README.md b/README.md index dea2e55..9214d11 100644 --- a/README.md +++ b/README.md @@ -3,17 +3,20 @@ [![Integration level](https://dash.yunohost.org/integration/bitwarden.svg)](https://dash.yunohost.org/appci/app/bitwarden) [![Install Bitwarden with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=bitwarden) +*[Lire ce readme en français.](./README_fr.md)* + > *This package allow you to install Bitwarden quickly and simply on a YunoHost server. If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.* ## Overview -Open source password management solutions. + +Bitwarden is a open source password manager. **Shipped version:** 1.14.1 ## Important points to read before installing -1. At the end of the installation, the admin user will receive a mail with the admin_token used to access https://your.domain.tld/bitwarden/admin. +At the end of the installation, the admin user will receive a mail with the admin_token used to access https://your.domain.tld/bitwarden/admin. ## Screenshots @@ -35,7 +38,8 @@ How to configure this app: by an admin panel at https://bitwarden.domain.tld/adm #### Multi-users support -LDAP and HTTP auth are not supported +* Are LDAP and HTTP auth supported? **No** +* Can the app be used by multiple users? **Yes** #### Supported architectures @@ -54,7 +58,7 @@ LDAP and HTTP auth are not supported Developers info ---------------- -Please do your pull request to the [testing branch](https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing). +Please do your pull request to the [testing branch]https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing). To try the testing branch, please proceed like that. ``` diff --git a/README_fr.md b/README_fr.md new file mode 100644 index 0000000..fef9a49 --- /dev/null +++ b/README_fr.md @@ -0,0 +1,68 @@ +# Bitwarden pour YunoHost + +[![Niveau d'intégration](https://dash.yunohost.org/integration/bitwarden.svg)](https://dash.yunohost.org/appci/app/bitwarden) +[![Installer Bitwarden avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=bitwarden) + +*[Read this readme in english.](./README.md)* + +> *Ce package vous permet d'installer Bitwarden 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.* + +## Vue d'ensemble + +Bitwarden est un gestionnaire de mots de passe open source. + +**Version incluse:** 1.14.1 + +## Points importants à lire avant l'installation + +Après l'installation, l'utilisateur admin recevra un e-mail avec le admin_token a utilisé pour accéder à l'administration de Bitwarden https://your.domain.tld/bitwarden/admin. + +## Captures d'écran + +![](https://bitwarden.com/images/hero.png) + +## Démo + +* [Démo officielle](https://vault.bitwarden.com/#/register) + +## Configuration + +Comment configurer cette application: via le panneau d'administration https://bitwarden.domain.tld/admin. + +## Documentation + + * Documentation officielle: https://help.bitwarden.com/ et https://github.com/dani-garcia/bitwarden_rs/wiki + +## Caractéristiques spécifiques YunoHost + +#### Support multi-utilisateurs + +* L'authentification LDAP et HTTP est-elle prise en charge? **No** +* L'application peut-elle être utilisée par plusieurs utilisateurs? **Yes** + +#### Architectures supportées + +* x86-64b - [![Build Status](https://ci-apps.yunohost.org/ci/logs/bitwarden%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/bitwarden/) +* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/bitwarden%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/bitwarden/) + +## Liens + + * Signaler un bug: https://github.com/YunoHost-Apps/bitwarden_ynh/issues + * Site de l'application: https://bitwarden.com/ + * Dépôt de l'application principale: https://github.com/dani-garcia/bitwarden_rs + * Site web YunoHost: https://yunohost.org/ + +--- + +Informations pour les développeurs +---------------- + +Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing). + +Pour essayer la branche testing, procédez comme suit. +``` +sudo yunohost app install https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing --debug +ou +sudo yunohost app upgrade bitwarden -u https://github.com/YunoHost-Apps/bitwarden_ynh/tree/testing --debug +``` diff --git a/scripts/install b/scripts/install index 189bcb8..9f6e0c4 100644 --- a/scripts/install +++ b/scripts/install @@ -88,10 +88,10 @@ ynh_print_info --message="Setting up source files..." ynh_app_setting_set --app=$app --key=final_path --value=$final_path # Download, check integrity, uncompress the source of bitwarden_rs from app.src to his build directory -ynh_setup_source --dest_dir="$final_path/build/" --source_id=app +ynh_setup_source --dest_dir="$final_path/build/" --source_id="app" # Download, check integrity, uncompress and patch the source from web.src -ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id=web +ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id="web" #================================================= # NGINX CONFIGURATION diff --git a/scripts/upgrade b/scripts/upgrade index 3f3b6fa..3e2da5a 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -86,10 +86,10 @@ then ynh_print_info --message="Upgrading source files..." # Download, check integrity, uncompress the source of bitwarden_rs from app.src to his build directory - ynh_setup_source --dest_dir="$final_path/build/" --source_id=app + ynh_setup_source --dest_dir="$final_path/build/" --source_id="app" # Download, check integrity, uncompress and patch the source from web.src - ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id=web + ynh_setup_source --dest_dir="$final_path/live/web-vault/" --source_id="web" fi #=================================================