images | ||
instruction_images | ||
pouchdb-browser-webpack | ||
.gitignore | ||
LICENSE | ||
main.ts | ||
manifest.json | ||
package-lock.json | ||
package.json | ||
pouchdb-browser.js | ||
README.md | ||
rollup.config.js | ||
styles.css | ||
tsconfig.json | ||
versions.json |
Self-hosted LiveSync
Renamed from: obsidian-livesync
This is the obsidian plugin that enables livesync between multi-devices with self-hosted database.
Runs in Mac, Android, Windows, and iOS.
Community implementation, not compatible with official "Sync".
It's getting almost stable now, But Please make sure to back your vault up!
Limitations: Folder deletion handling is not completed. It would work now.
This plugin enables..
- Live Sync
- Self-Hosted data synchronization with conflict detection and resolving in Obsidian.
- Off-line sync is also available.
- Receive WebClip from obsidian-livesync-webclip
IMPORTANT NOTICE
Please make sure to disable other synchronize solutions to avoid content corruption or duplication. If you want to synchronize to both backend, sync one by one, please.
How to use
- Install from Obsidian, or clone this repo and run
npm run build
,copymain.js
,styles.css
andmanifest.json
into[your-vault]/.obsidian/plugins/
(PC, Mac and Android will work) - Enable Self-hosted LiveSync in the settings dialog.
- If you use your self-hosted CouchDB, set your server's info.
- or Use IBM Cloudant, take an account and enable Cloudant in Catalog
Note please choose "IAM and legacy credentials" for the Authentication method Setup details are in Couldant Setup Section. - Setup LiveSync or SyncOnSave or SyncOnStart as you like.
Test Server
Setting up an instance of Cloudant or local CouchDB is a little complicated, so I made the Tasting server of self-hosted-livesync up. Try free!
Note: Please read "Limitations" carefully. Do not send your private vault.
WebClipper is also available.
Available from on Chrome Web Store:obsidian-livesync-webclip
Repo is here: obsidian-livesync-webclip. (Docs are work in progress.)
When your database looks corrupted or too heavy to replicate to a new device.
self-hosted-livesync changes data treatment of markdown files since 0.1.0
When you are troubled with synchronization, Please reset local and remote databases.
Note: Without synchronization, your files won't be deleted.
- Update plugin on all devices.
- Disable any synchronizations on all devices.
- From the most reliable device(The device), back your vault up.
- Press "Drop History"-> "Execute" button from The device.
- Wait for a while, so self-hosted-livesync will say "completed."
- In other devices, replication will be canceled automatically. Click "Reset local database" and click "I'm ready, mark this device 'resolved'" on all devices.
If it doesn't be shown. replicate once. - It's all done. But if you are sure to resolve all devices and the warning is noisy, click "I'm ready, unlock the database". it unlocks the database completely.
Designed architecture
How does this plugin synchronize.
- When notes are created or modified, Obsidian raises some events. obsidian-live-sync catch these events and reflect changes into Local PouchDB.
- PouchDB automatically or manually replicates changes to remote CouchDB.
- Another device is watching remote CouchDB's changes, so retrieve new changes.
- obsidian-live-sync reflects replicated changeset into Obsidian's vault.
Note: The figure is drawn as single-directional, between two devices. But everything occurs bi-directionally between many devices at once in real.
Techniques to keep bandwidth low.
Cloudant Setup
Creating an Instance
Select Multitenant(it's the default) and the region as you like. 3. Be sure to select "IAM and Legacy credentials" for "Authentication Method".
-
When all of the above steps have been done, Open "Resource list" on the left pane. you can see the Cloudant instance in the "Service and software". Click it.
-
In resource details, there's information to connect from self-hosted-livesync. Copy the "External Endpoint(preferred)" address. (*1). We use this address later, with the database name.
CouchDB setup
-
Hit the "Launch Dashboard" button, Cloudant dashboard will be shown. Yes, it's almost CouchDB's fauxton.
-
First, you have to enable the CORS option. Hit the Account menu and open the "CORS" tab. Initially, "Origin Domains" is set to "Restrict to specific domains"., so set to "All domains(*)"
NOTE: of course We want to set "app://obsidian.md" but it's not acceptable on Cloudant. -
And open the "Databases" tab and hit the "Create Database" button.
Enter the name as you like (*2) and Hit the "Create" button below.
-
If the database was shown with joyful messages, setup is almost done. And, once you have confirmed that you can create a database, usullay there is no need to open this screen. You can create a database from Self-hosted LiveSync.
Credentials Setup
-
Back into IBM Cloud, Open the "Service credentials". You'll get an empty list, hit the "New credential" button.
-
The dialog to create a credential will be shown. type any name or leave it default, hit the "Add" button.
NOTE: This "name" is not related to your username that uses in Self-hosted LiveSync. -
Back to "Service credentials", the new credential should be created.
open details.
The username and password pair is inside this JSON.
"username" and "password" are so.
follow the figure, it's "apikey-v2-2unu15184f7o8emr90xlqgkm2ncwhbltml6tgnjl9sd5"(*3) and "c2c11651d75497fa3d3c486e4c8bdf27"(*4)
Self-hosted LiveSync setting
Items | Value | example |
---|---|---|
CouchDB Remote URI: | (*1)/(*2) or any favorite name | https://xxxxxxxxxxxxxxxxx-bluemix.cloudantnosqldb.appdomain.cloud/sync-test |
CouchDB Username | (*3) | apikey-v2-2unu15184f7o8emr90xlqgkm2ncwhbltml6tgnjl9sd5 |
CouchDB Password | (*4) | c2c11651d75497fa3d3c486e4c8bdf27 |
License
The source code is licensed MIT.