mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
feat: Implement Workflow API and Queue Management
- Added ManualAPI for manually triggering workflows via GET and POST requests. - Introduced WorkflowAPI for updating workflows with authorization checks. - Created documentation for JavaScript and Webhook components. - Established WorkflowFeatureSet to initialize routing and job processing. - Developed QueueWorkflow service for managing workflow queue operations. - Implemented RunWorkflow service to execute workflows with error handling and logging. - Added utility for loading component metadata dynamically.
This commit is contained in:
@@ -183,8 +183,8 @@ export const OpenTelemetryIngestHostname: Hostname = Hostname.fromString(
|
||||
);
|
||||
|
||||
export const WorkerHostname: Hostname = Hostname.fromString(
|
||||
`${process.env["SERVER_WORKER_HOSTNAME"] || "localhost"}:${
|
||||
process.env["WORKER_PORT"] || 80
|
||||
`${process.env["SERVER_APP_HOSTNAME"] || "localhost"}:${
|
||||
process.env["APP_PORT"] || 80
|
||||
}`,
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user