11 unstable releases

0.5.0 Mar 21, 2022
0.4.1 Dec 14, 2020
0.3.1 Mar 8, 2020
0.2.0 Dec 24, 2019
0.0.2 Nov 30, 2019

#2635 in Command line utilities

28 downloads per month

Custom license

63KB
1K SLoC

Build Status Latest Version

arpx

Small-scale process orchestration


About

Arpx is a small-scale, run n' gun process orchestrator. In other words, Arpx makes it easy to schedule processes and automate them depending on each others' runtimes in cases where more complex orchestration isn't needed.

Larger-scale process orchestrators (like Kubernetes) allow for in-depth monitoring, complex deployment setups, and granular, real-time process management on top of their normal scheduling and automation features. Arpx, in contrast, aims to provide only that which is necessary for things like running multiple interdependent development servers concurrently, scheduling build scripts or tests in relation to each other, adding naive self-healing to local processes, etc.

automate and relate processes(x)

Vaguely, Arpx's primary use-case is development-oriented tasks which variously require scheduling, concurrency, and/or unsophisticated runtime monitoring and handling.

If you want to hack some orchestration into your development environment, Arpx might be right for you.

Library vs. binary

The name "Arpx" variously refers to the library which provides the program's core functionality (the Arpx runtime object) as well as the binary which wraps that core functionality in a convenient CLI.

Library-specific documentation can be found on docs.rs. Documentation in this repository focuses on the Arpx CLI tool.

Installing

Arpx can be installed using the binaries build on each release or via Rust's cargo install.

Installing a release binary

  1. Navigate to the Releases page
  2. Choose a release
  3. Download the appropriate archive for your machine
  4. Unpack the archive and relocate the binary to your desired location
  5. Ensure the binary is located in your system's PATH
  6. Verify that arpx --version works on your command line

Installing via Cargo

  1. Install Rust on your machine (docs)
  2. Execute cargo install arpx on your command line


Note on the philosophy behind this project

Arpx is meant to be a duct tape, run n' gun solution for hackily orchestrating program runtimes. Arpx doesn't seek to be a general-purpose, production-ready tool, but feel free to use it however you see fit (in line with the license).
If you have ideas for Arpx, please feel free to open an issue or contact me directly. I'm happy to discuss this project and any ideas you might have. However, please keep in mind that ideas and feature requests will likely only be implemented if they align well with the aforementioned goals.

Dependencies

~5MB
~95K SLoC