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/keyleluya/releases/latest/download/FileLuYa-v0.1.0.dmg
open FileLuYa-v0.1.0.dmg
# Drag keyleluya to /usr/local/bin
# Or install MacFUSE + build from source
brew install --cask macfuse
cargo install --git https://github.com/loveJesus/keyleluya --bin keyleluyaLibrary Crates
cargo add keyleluya-proto-chirho # Wire protocol types
cargo add keyleluya-lattices-chirho # CRDT lattice types
cargo add keyleluya-crypto-chirho # Hybrid PQ crypto
cargo add keyleluya-ledger-chirho # Token systemVerify Your Installation
# Check that keyleluya is installed
keyleluya --help
# Mount a test vault
keyleluya mount ~/test-vault --cache-dir ~/.keyleluya
# Write a test file
echo "it works" > ~/test-vault/test.txt
cat ~/test-vault/test.txt
# → it works
# Clean up
keyleluya unmount ~/test-vault