This repository showcases sample applications built using Orkes Conductor, a powerful orchestration engine designed for microservices orchestration. These examples serve as practical guides for developers looking to implement complex workflows.
- Payment processing SAGA with Conductor and Go
- How to rate limit workflow executions with Conductor
- Workflow example showing various timeout scenarios with Conductor
- Agentic stock trading app with Conductor and Python
- Browse to https://developer.orkescloud.com/
- On the left menu select Access Control > Applications
- Select
Create a New Application
- Give your application a unique name and hit
Save
- Set appropriate permissions for the application
- Note: In Orkes Conductor Developer Edition new applications are pre-set with the following permissions:
- Unrestricted roles: Admin
- Application roles: Worker
- Select
Create access key
button
💡 IMPORTANT: Make sure to copy and save your
Key ID
andKey Secret
somewhere safe. You will not be able to recover these after closing the window
- Add Orkes Conductor Developer Edition URL and Application access key to your environmental variables.
export CONDUCTOR_SERVER_URL=https://developer.orkescloud.com/api/
export CONDUCTOR_AUTH_KEY=<your api key from step 4 above >
export CONDUCTOR_AUTH_SECRET=<your api secret from step 5 above>