https://github.com/littlehorse-enterprises/littlehorse
This repository contains the code for the LittleHorse Server, Dashboard, CLI, and Java/Go/Python SDK's. Brought to you by LittleHorse Enterprises LLC
https://github.com/littlehorse-enterprises/littlehorse
microservices orchestration workflow-engine
Last synced: about 2 months ago
JSON representation
This repository contains the code for the LittleHorse Server, Dashboard, CLI, and Java/Go/Python SDK's. Brought to you by LittleHorse Enterprises LLC
- Host: GitHub
- URL: https://github.com/littlehorse-enterprises/littlehorse
- Owner: littlehorse-enterprises
- License: other
- Created: 2023-07-19T17:41:58.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-24T14:28:08.000Z (about 2 months ago)
- Last Synced: 2025-02-24T15:38:11.376Z (about 2 months ago)
- Topics: microservices, orchestration, workflow-engine
- Language: Java
- Homepage: https://littlehorse.io/docs/server
- Size: 34.5 MB
- Stars: 130
- Watchers: 8
- Forks: 11
- Open Issues: 118
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-java - LittleHorse
README
# LittleHorse
![]()
![]()
![]()
[](https://launchpass.com/littlehorsecommunity)
![]()
[LittleHorse](https://littlehorse.io) is a high-performance microservice orchestration engine that allows developers to build scalable, maintainable, and observable applications. By allowing LittleHorse to manage coordination and sequencing of your applications, you no longer have to worry about:
* Wiring microservices together with RPC calls or message queues.
* Retries, timeouts, dead-letter queues.
* Distributed tracing and debugging across multiple microservices.
* Scheduling actions to asychronously happen in the future.
* Backpressure and scalability.## Getting Started
### Installing LittleHorse
1. Install the LittleHorse CLI agent as follows:
```sh
brew install littlehorse-enterprises/lh/lhctl
```Alternatively, you can install it from our [GitHub Releases page](https://github.com/littlehorse-enterprises/littlehorse/releases)
2. Next, run LittleHorse Server and Dashboard using our standalone docker image:
```
docker run --name littlehorse -d -p 2023:2023 -p 8080:8080 ghcr.io/littlehorse-enterprises/littlehorse/lh-standalone:latest
```3. Verify the server is installed and running using lhctl
```
-> lhctl version
lhctl version: 0.12.1 (Git SHA homebrew)
Server version: 0.12.1
```4. Navigate to the dashboard at `http://localhost:8080`
For more information go to our [Quickstart Installation Docs](https://littlehorse.io/docs/server/developer-guide/install).
### Running Your First Workflow
To run a workflow with LittleHorse, you need to:
- Define tasks which are units of work that can be used in a process, and implement programs that execute those tasks.
- Define your workflows and tell the workflow engine about it
- Run the workflow
- The workflow engine ensures that your process gets executed correctly.
![]()
To get started quickly with a basic workflow, try our quickstarts in [Java](https://github.com/littlehorse-enterprises/lh-quickstart-java), [Go](https://github.com/littlehorse-enterprises/lh-quickstart-go), and [Python](https://github.com/littlehorse-enterprises/lh-quickstart-python). For more detailed examples, you can check out:
- The [examples directory](./examples) in this repo
- The [lh-examples repository](https://github.com/littlehorse-enterprises/lh-examples), which contains more complex applications.For documentation, visit [littlehorse.io/docs/server](https://www.littlehorse.io/docs/server).
## Developing
For information about developing LittleHorse, see the guide in our [local-dev README](./local-dev/README.md).
### License
All code in this repository is covered by the [Server Side Public License, Version 1](https://spdx.org/licenses/SSPL-1.0.html) and is copyright of LittleHorse Enterprises LLC.