No description
Find a file
dependabot[bot] 08a117e4f2
Bump minimatch from 10.0.1 to 10.1.1 in /frontend
Bumps [minimatch](https://github.com/isaacs/minimatch) from 10.0.1 to 10.1.1.
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/minimatch/compare/v10.0.1...v10.1.1)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-version: 10.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-14 23:40:11 +00:00
.github Format & lint 2025-12-14 17:19:25 +00:00
.vscode Exclude target 2025-08-17 10:56:43 +01:00
docs Align prettier & editorconfig 2025-12-07 16:42:23 +00:00
frontend Bump minimatch from 10.0.1 to 10.1.1 in /frontend 2025-12-14 23:40:11 +00:00
scripts Format & lint 2025-12-14 17:19:25 +00:00
sync-server Bump versions to 0.14.0 2025-12-14 23:31:40 +00:00
.editorconfig Fix and apply editorconfig 2025-12-07 16:42:23 +00:00
.gitignore Add log rotation to server & UI improvements (#157) 2025-11-02 17:52:04 +00:00
CLAUDE.md Apply editorconfig 2025-12-07 16:42:23 +00:00
manifest.json Bump versions to 0.14.0 2025-12-14 23:31:40 +00:00
README.md Run E2E more often 2025-12-03 23:18:16 +00:00

VaultLink self-hosted Obsidian plugin for file syncing

Check E2E tests Publish server Docker image Publish CLI 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

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
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 8

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

Projects