No description
Find a file
dependabot[bot] 1da17c462e
Bump anyhow from 1.0.98 to 1.0.100 in /sync-server (#150)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-02 17:54:12 +00:00
.github Add local CLI (#144) 2025-10-21 22:45:47 +01:00
.vscode Exclude target 2025-08-17 10:56:43 +01:00
frontend Bump commander from 12.1.0 to 14.0.2 in /frontend (#149) 2025-11-02 17:53:58 +00:00
scripts Add log rotation to server & UI improvements (#157) 2025-11-02 17:52:04 +00:00
sync-server Bump anyhow from 1.0.98 to 1.0.100 in /sync-server (#150) 2025-11-02 17:54:12 +00:00
.editorconfig Add log rotation to server & UI improvements (#157) 2025-11-02 17:52:04 +00:00
.gitignore Add log rotation to server & UI improvements (#157) 2025-11-02 17:52:04 +00:00
CLAUDE.md Add Claude file 2025-08-27 22:32:52 +01:00
manifest.json Bump versions to 0.9.2 2025-10-21 22:47:34 +01:00
README.md Wrong crate 2025-10-19 14:43:11 +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:

cargo install sqlx-cli cargo-machete cargo-edit
cd sync-server
cargo run config-e2e.yml
cd frontend
npm install
npm run dev

Scripts

Before pushing

scripts/check.sh --fix

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