Navigation
Getting Started
Installation
Download a release
The easiest way to get Filera is to download a pre-built binary from the Releases page on GitHub.
Choose the package for your operating system:
| Platform | File type |
|---|---|
| Windows | .msi installer or .exe |
| macOS | .dmg disk image |
| Linux | .AppImage or .deb |
Building from source
If you prefer to build Filera yourself, you'll need:
- Rust (latest stable via rustup)
- Node.js v16 or higher
- Tauri system dependencies for your platform
Steps
git clone https://github.com/joncorv/filera.git
cd filera
# Install frontend dependencies
npm install
# Start 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
If you use NixOS, a development shell is included. Run nix develop at the repo root and all required dependencies will be available automatically.