cf21f0238f
* Overhaul documentation site with modern design and new content - Redesign homepage with hero section, scrolling logo wall, value strip, feature cards, architecture section, FAQ, and CTA - Add new architecture pages: Durable Execution, Agents & AI, JSON + Code Native - Add Quickstart guide with polyglot worker examples (Java, Python, JS, Go, C#, Ruby, Rust) - Modern CSS theme: Instrument Serif + DM Sans + IBM Plex Mono, solarized code blocks, dark mode support - Replace curl examples with Conductor CLI commands across all pages - Add SEO meta descriptions to 30+ pages targeting durable code execution, workflow engine, saga pattern keywords - Restructure mkdocs.yml navigation with tabs, search, and content features - Add MkDocs Material theme overrides and serve-docs.sh helper script
34 lines
980 B
JSON
34 lines
980 B
JSON
{
|
|
"name": "hello_workflow",
|
|
"version": 1,
|
|
"tasks": [
|
|
{
|
|
"name": "fetch_data",
|
|
"taskReferenceName": "fetch_ref",
|
|
"type": "HTTP",
|
|
"inputParameters": {
|
|
"http_request": {
|
|
"uri": "https://orkes-api-tester.orkesconductor.com/api",
|
|
"method": "GET"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "parse_response",
|
|
"taskReferenceName": "parse_ref",
|
|
"type": "INLINE",
|
|
"inputParameters": {
|
|
"data": "${fetch_ref.output.response.body}",
|
|
"evaluatorType": "graaljs",
|
|
"expression": "(function() { var d = $.data; return { summary: 'Host ' + d.hostName + ' responded in ' + d.apiRandomDelay + ' with random value ' + d.randomInt, host: d.hostName, randomValue: d.randomInt }; })()"
|
|
}
|
|
}
|
|
],
|
|
"outputParameters": {
|
|
"summary": "${parse_ref.output.result.summary}",
|
|
"apiResponse": "${fetch_ref.output.response.body}"
|
|
},
|
|
"schemaVersion": 2,
|
|
"ownerEmail": "dev@example.com"
|
|
}
|