refactor: extract syncfu-core + headless server + monorepo restructure - #2
Merged
Merged
Conversation
sujithatzackriya
force-pushed
the
fix/install-review-findings
branch
from
March 26, 2026 16:37
e09ec39 to
a1416ac
Compare
Builds Tauri desktop bundles (macOS .dmg, Windows NSIS, Linux AppImage) alongside CLI binaries in a single release pipeline triggered on v* tags.
Downloads and installs the desktop app (.dmg on macOS, .AppImage on Linux) plus CLI binary. Starts the tray app after install so the server is immediately available on port 9868. Falls back to --cli-only if desktop download fails.
Downloads NSIS installer for the desktop app (silent install) plus CLI binary. Starts the tray app after install. Adds -CliOnly switch for headless/CI environments.
Replaced by release.yml which builds both desktop app and CLI. Converted to manual workflow_dispatch to prevent duplicate releases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
syncfu-corecrate — types, notification manager, waiters, webhook, HTTP server with zero Tauri dependencyUiNotifiertrait — decouples server from UI layer. Desktop implements with Tauri (NSPanel overlay + events), headless usesNoopNotifiersyncfu serveCLI command — runs headless HTTP server for CI/CD, containers, and quick testing without desktop appcore/(shared lib),cli/(CLI binary),desktop/(Tauri app withsrc-tauri/+frontend/)Test plan
cargo test -p syncfu-core— all 49 core tests passcargo build -p syncfu-cli— CLI builds cleancargo check -p syncfu— desktop crate compilessyncfu servestarts headless server on port 9868syncfu send -t "Test" "hello"works against headless serversyncfu health/syncfu list/syncfu dismiss-allworkcd desktop && npx tauri dev) launches with overlaysyncfu send --waitblocks and returns action/dismissed/timeout🤖 Generated with Claude Code