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
# Download the signed + notarized DMG
curl -LO https://github.com/loveJesus/fileluya/releases/latest/download/FileLuYa-v0.1.0.dmg
open FileLuYa-v0.1.0.dmg
# Drag fileluya to /usr/local/bin
# Or install MacFUSE + build from source
brew install --cask macfuse
cargo install --git https://github.com/loveJesus/fileluya --bin fileluyaLibrary 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 systemVerify 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