Workflows in Deskree Platform are built using the Nanoservice-ts framework, enabling modular, scalable, and reusable backend logic.🔗 Learn more about workflows in Nanoservice-ts: Core Concepts - Workflows
Each workflow starts with a trigger, which determines when and how the workflow runs.✅ Currently supported trigger: HTTP trigger (executed via API call).
🔜 Upcoming triggers: Event-based, CRON, Webhooks, etc.
A workflow consists of a series of nodes, each performing a specific function. Nodes are connected via data mapping, ensuring that outputs from one node can be used as inputs in another.📌 Learn more about data mapping (CTX in Nanoservice-ts):
🔗 Data Mapping & Context
1️⃣ Go to Deskree Platform
2️⃣ Select an Application
3️⃣ Define a Trigger (e.g., HTTP request)
4️⃣ Add Nodes and configure their execution flow
5️⃣ Deploy & Test 🚀
To speed up development, we provide ready-to-use workflow templates that cover common use cases.✅ Prebuilt workflow templates available
✅ Customizable based on your project needs