Quick Start ​
This guide will help you quickly get started with The Pipeline Framework using the visual Canvas designer - the fastest and easiest way to create your first pipeline application!
Quick Start with Visual Canvas Designer ​
The fastest way to get started with The Pipeline Framework is by using the visual Canvas designer at https://app.pipelineframework.org.
1. Access the Canvas Designer ​
Visit https://app.pipelineframework.org in your web browser.
2. Create Your First Pipeline ​
- Click the "New Pipeline" button
- Start adding steps by clicking the "+" button
- Configure each step by:
- Setting a descriptive name
- Choosing the appropriate cardinality (1-1, Expansion, Reduction, or Side effect)
- Defining input and output fields with rich Java types
3. Download Your Complete Application ​
Once you've designed your pipeline:
- Click the "Download Application" button
- Save the generated ZIP file containing your complete application
4. Build and Run Your Application ​
Extract the ZIP file and navigate to the application directory:
unzip your-pipeline-app.zip
cd your-pipeline-app
./mvnw clean compile
./mvnw quarkus:devYour application is now running locally.
Next Steps ​
Congratulations! You've successfully created your first pipeline application. Now explore these topics:
- Canvas Designer Guide - Complete guide to using the visual designer
- Application Structure - Learn how the generated application is structured
- Functional Architecture - Deep dive into the framework architecture
Template Generator (Reference Only) ​
The visual Canvas is the primary way to create new applications. If you need automation or CI-only generation, use the template generator as a secondary option.
See Template Generator Guide for details.