What you end up with
Hickeyfield installed like any other app on your Mac. It is free, and it stays free — there is no account, no trial and no subscription at the end of this.
- Time
- About 45 minutes
- Steps
- 17
- Cost
- Free
Before you start
These are one-time installs. If you have used Terminal before, you may have them already — the first step checks.
Install Git
Apple opens a small installer.
Type this into Terminal, then press Return.
xcode-select --installYou know this worked when: Git responds with a version number
Install Node LTS
Choose the macOS Installer (.pkg).
Open downloadYou know this worked when: Node responds with a version number
Install Hickeyfield
Open Terminal
Keep it open beside this page.
You know this worked when: Terminal is open
Check Git and Node
Use Terminal. Git and the current Node LTS are required.
Type this into Terminal, then press Return.
git --version node --versionYou know this worked when: Git and Node respond with version numbers
Install pnpm
The interface is a pnpm project.
Type this into Terminal, then press Return.
npm install -g pnpmYou know this worked when: pnpm responds with a version number
Install Rust
Run the single command the page shows, then reopen Terminal.
Open rustupYou know this worked when: cargo responds with a version number
Copy Hickeyfield to this Mac
Type this into Terminal, then press Return.
cd ~ if [ ! -d hickeyfield/.git ]; then git clone https://github.com/Blueturboguy07/hickeyfield.git fiYou know this worked when: A hickeyfield folder appears
Open the hickeyfield folder
Type this into Terminal, then press Return.
cd hickeyfieldYou know this worked when: Your terminal prompt is inside the hickeyfield folder
Use the reviewed version
Type this into Terminal, then press Return.
git checkout ab5992c5aac8be595ce570e7ca0a80484e372321You know this worked when: Git reports the reviewed commit
Install the interface packages
Type this into Terminal, then press Return.
cd ui pnpm install cd ..You know this worked when: The install finishes without an error
Fetch the video engine
About 80 MB. The script checks its licence before installing it.
Type this into Terminal, then press Return.
./scripts/fetch-ffmpeg.shYou know this worked when: It reports GPL, not nonfree, and finishes
Build the app
The first build compiles the whole Rust core, so give it a while.
Type this into Terminal, then press Return.
ui/node_modules/.bin/tauri build --bundles appYou know this worked when: A Hickeyfield.app appears in the bundle folder
Put Hickeyfield in Applications
Copy the freshly built app into Applications so it's a real, launchable Mac app.
Type this into Terminal, then press Return.
ditto src-tauri/target/release/bundle/macos/Hickeyfield.app /Applications/Hickeyfield.appYou know this worked when: Hickeyfield.app is in your Applications folder
Open Hickeyfield
Built on your own machine, so macOS opens it without any warning.
Type this into Terminal, then press Return.
open /Applications/Hickeyfield.appYou know this worked when: Hickeyfield opens
Get a fal key
Sign in, make a key, and copy it. You pay fal directly for what you generate.
Open fal keysYou know this worked when: You have a key on your clipboard
Paste the key into Hickeyfield
Settings, then fal, then Test. It is stored in your keychain, never in a file.
You know this worked when: Hickeyfield reports the key works
Make something
Type a shot, check the price on the button, and press Generate.
You know this worked when: A video appears in the middle column and plays
If something goes wrong
Nothing here can damage your computer, and every step can be run again safely. If a command fails, the usual cause is the step before it not having finished.
Still stuck? Tell us what happened and we will fix the guide. Include the step number and we can usually reproduce it.