1 مستودع
Maintains an ordered task list where each task can declare prerequisites, forming a directed acyclic graph that controls execution order.
Distinct from Task Queues: Distinct from Task Queues: adds a dependency graph that controls execution order, not just a simple queue.
Explore 1 awesome GitHub repository matching devops & infrastructure · Dependency Graph Queues. Refine with filters or upvote what's useful.
Pueue is a task queue manager for shell commands, built as a daemon and command-line interface. It accepts shell commands into a managed queue and executes them with configurable parallel execution limits, supporting both global and per-group concurrency controls. The daemon persists its entire state—task queue, logs, and configuration—to disk, ensuring survival across crashes and system restarts. The project distinguishes itself through a dependency graph that lets tasks declare prerequisites, forming a directed acyclic graph that controls execution order. Tasks can be organized into named g
Maintains a task queue where each task can declare prerequisites, forming a directed acyclic graph for execution order.