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.27view release on GitHub

macOS
Universal binary (Apple Silicon + Intel). Download the .dmg, open it, and drag Filera to Applications.
Windows
NSIS installer (.exe). Run the installer and follow the prompts. See the SmartScreen note below.
Linux — Debian/Ubuntu
Download the .deb and install with sudo dpkg -i filera_*_amd64.deb
Linux — Fedora/RHEL
Download the .rpm and install with sudo rpm -i filera-*.x86_64.rpm
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:

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.