Firefly can be installed directly on your macOS or Linux desktop machine. This is a full-featured installation that performs very well when working with local files.
curl -L https://raw.githubusercontent.com/Caltech-IPAC/firefly/refs/heads/dev/bin/get-firefly | bash- Change to the directory where you want to install Firefly.
- Run the command above.
- The installer will create a firefly directory containing the application and supporting files.
curl -L https://raw.githubusercontent.com/Caltech-IPAC/firefly/refs/heads/dev/bin/install.sh -o install.shchmod +x install.sh
./install.shThe installer will prompt you for a destination directory.
Use the following command to see all available options:
./install.sh -hAfter installation, Firefly provides instructions for starting the server.
The Firefly server is managed using the firefly/bin/ff script.
To see all available commands and options:
firefly/bin/ff --helpWhen Firefly starts, it automatically opens in your default web browser.
The ff script uses commands as its primary argument.
firefly/bin/ff startfirefly/bin/ff start --background(Only needed when running in background mode.)
firefly/bin/ff stopfirefly/bin/ff logs -ffirefly/bin/ff statusfirefly/bin/ff uninstallOn macOS, Firefly creates a menu bar icon on the right side of the system menu bar.
Use the drop-down menu to control and monitor the Firefly server.
Firefly can be configured using the JSON file:
~/.firefly/config.json
Edit this file to change the ports Firefly uses or to specify your own Java installation.
Firefly requires Java 21 or later. By default, Firefly uses "auto" to automatically select a compatible Java runtime.
If you want to use a Java installation already available on your system, replace the java entry in config.json with the path to your Java executable.
{
"ports": {
"firefly": 10233,
"redis": 10234
},
"java": "auto"
}This example changes the Firefly port and uses a local Java installation:
{
"ports": {
"firefly": 7777,
"redis": 102346
},
"java": "/usr/bin/java"
}Firefly requires macOS 15 or greater
Firefly requires that libssl.so.3 is on your linux system.
Check with the following command
/sbin/ldconfig -p | grep libssl.so.3- Debian 12 or later
- Red Hat 9 or later
- Ubuntu 22.04 LTS or later
- Fedora all recent releases
Standalone Firefly is not supported on Windows