The self-hosted server for Obsidian AnySocket Sync
Built with: anysocket
Important: Always backup your vault!
- Download the latest release (Releases)
- Or using git clone
git clone [email protected]:lynxaegon/obsidian-anysocket-sync-server.git
- Or using git clone
- Rename
config.example.jstoconfig.js - Update the configuration
node index.js- Enjoy!
/app/data- the location where vault data will be on disk
/app/config.js- the location of the config required to run the
server
- the location of the config required to run the
docker run \
-v ${PWD}/config.js:/app/config.js \
-v ${PWD}/data:/app/data \
-p 3000:3000 \
--rm \
lynxaegon/obsidian-anysocket-sync-server
docker build -t sync-server .
docker run \
-v ${PWD}/config.js:/app/config.js \
-v ${PWD}/data:/app/data \
-p 3000:3000 \
--rm \
sync-server
MIT