No description
Find a file
2025-10-18 15:36:49 +01:00
.claude . 2025-10-18 15:36:49 +01:00
.github . 2025-10-18 15:36:49 +01:00
.vscode . 2025-10-18 15:36:49 +01:00
frontend . 2025-10-18 15:36:49 +01:00
scripts . 2025-10-18 15:36:49 +01:00
sync-server . 2025-10-18 15:36:49 +01:00
.editorconfig . 2025-10-18 15:36:49 +01:00
.gitignore . 2025-10-18 15:36:49 +01:00
CLAUDE.md . 2025-10-18 15:36:49 +01:00
manifest.json . 2025-10-18 15:36:49 +01:00
README.md . 2025-10-18 15:36:49 +01:00

VaultLink self-hosted Obsidian plugin for file syncing

Check E2E tests Publish server Docker image Publish Obsidian plugin

Develop

Install nvm

  • curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
  • nvm install 22
  • nvm use 22
  • Optionally set the system-wide default: nvm alias default 22

Set up Rust

  • Install rustup: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  • Install wasm-pack: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
  • cargo install cargo-insta sqlx-cli cargo-edit

Install Obsidian on Linux

apt install flatpak
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
flatpak install flathub md.obsidian.Obsidian
flatpak run md.obsidian.Obsidian

Run in development mode

Start the server:

cd sync-server && cargo run config-e2e.yml
cd frontend && npm run dev

Scripts

Update HTTP API TS bindings

scripts/update-api-types.sh

Publish new version

scripts/bump-version.sh patch

Run E2E tests

scripts/e2e.sh

And to clean up the logs & database files, run scripts/clean-up.sh

Projects