Navigation
Getting Started
Installation
Filera is available as a pre-built binary for Windows, macOS, and Linux. You can also build it from source if you prefer.
Download
Downloading for filera-v0.4.27 — view release on GitHub
Filera's Windows installer is not yet code-signed. When you run the
.exe, Windows Defender SmartScreen may show a "Windows protected your PC" warning. Click More info, then Run anyway. You can verify the release on GitHub.Building from source
If you prefer to build Filera yourself, you'll need:
- Rust (latest stable via rustup)
- Node.js v18 or higher
- Tauri system dependencies for your platform
Steps
Clone the repository
git clone https://github.com/joncorv/filera.git
cd filera
Install frontend dependencies
npm install
Start the development server
npm run tauri dev
Build a production binary
npm run tauri build
The built binary will appear in src-tauri/target/release/.
NixOS: A development shell is included. Run
nix develop at the repo root — all required dependencies (Rust, Node, system libraries) will be available automatically.