mirror of
https://github.com/basnijholt/compose-farm.git
synced 2026-02-03 14:13:26 +00:00
- Add service-level commands to the command palette when viewing a stack detail page - Services are extracted from the compose file and exposed via a `data-services` attribute - Commands are grouped by action (all Logs together, all Pull together, etc.) with services sorted alphabetically - Service commands appear with a teal indicator to distinguish from stack-level commands (green) - Implement word-boundary fuzzy matching for better filtering UX: - `rest plex` matches `Restart: plex-server` - `server` matches `plex-server` (hyphenated names split into words) - Query words must match the START of command words (prevents false positives like `r ba` matching `Logs: bazarr`) Available service commands: - `Restart: <service>` - Restart a specific service - `Pull: <service>` - Pull image for a service - `Logs: <service>` - View logs for a service - `Stop: <service>` - Stop a service - `Up: <service>` - Start a service