Download FileLuYa

Available for macOS, Linux, and Windows. Built with Rust for performance and safety.

Install on macOS

Requires MacFUSE: https://osxfuse.github.io/

Build from Source

# Option 1: DMG (signed + notarized)
brew install --cask macfuse
curl -LO https://github.com/loveJesus/fileluya/releases/latest/download/FiLeLuYa-v0.1.0.dmg
open FiLeLuYa-v0.1.0.dmg

# Option 2: Build from source
brew install --cask macfuse
cargo install fileluya

# Then setup and mount
fileluya setup
fileluya mount

Download Binary

Download FileLuYa-v0.1.0.dmg

Or browse all releases on GitHub Releases.

Library Crates

cargo add fileluya-proto      # Wire protocol types
cargo add fileluya-lattices   # CRDT lattice types
cargo add fileluya-crypto     # Hybrid PQ crypto
cargo add fileluya-ledger     # Token system

Verify Your Installation

# Check that fileluya is installed
fileluya --help

# Mount a test vault
fileluya mount ~/test-vault --cache-dir ~/.fileluya

# Write a test file
echo "it works" > ~/test-vault/test.txt
cat ~/test-vault/test.txt
# → it works

# Clean up
fileluya unmount ~/test-vault