From 359f83fb653381c00c2f59e58bfbeb0127600992 Mon Sep 17 00:00:00 2001 From: 2nistechworld <117668522+2nistechworld@users.noreply.github.com> Date: Sat, 15 Jul 2023 08:35:17 -0400 Subject: [PATCH] Created Enabling Mobile Client push notification (markdown) --- Enabling-Mobile-Client-push-notification.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Enabling-Mobile-Client-push-notification.md diff --git a/Enabling-Mobile-Client-push-notification.md b/Enabling-Mobile-Client-push-notification.md new file mode 100644 index 0000000..d5cf8eb --- /dev/null +++ b/Enabling-Mobile-Client-push-notification.md @@ -0,0 +1,20 @@ +Since the version 1.29.0 of Vaultwarden, you can activate the Mobile Client push notification to seamlessly sync your vault between the mobile app, the web extension and the web vault without the need to sync manually. + +### Enable Mobile Client push notification + +Edit your vaultwarden docker compose file and add this lines in the environnement part: +```yaml + - PUSH_ENABLED=true + - PUSH_INSTALLATION_ID= + - PUSH_INSTALLATION_KEY= +``` + +To get the PUSH_INSTALLATION_ID and PUSH_INSTALLATION_KEY go to [https://bitwarden.com/host/](https://bitwarden.com/host/), put an email address and you'll get your ID and KEY. + +Once it's done, restart your docker container with + +```bash +docker compose up -d vaultwarden +``` + +💡 At first the sync will not work with the mobile app. You have to reinstall the app and relog to you Vaultwarden to make the push notification work. \ No newline at end of file