From 195751b1e7e22ec48d806e3b8d823792e64e83b3 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:36:15 +0000 Subject: [PATCH] Update wiki Home page for ftp-source --- Home.md | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..7e522d6 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,35 @@ -# Deploy the Project on CamelX Platform +# FTP Source -Deploy on CamelX Platform in three steps +Receive data from an FTP server. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Type | source | +| Group | FTP | +| Namespace | File | +| Support Level | Stable | +| Provider | Apache Software Foundation | -## Step 2: Deploy -Click on **"Deploy"** +## Properties -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `connectionHost` | string | ✓ | | The hostname of the FTP server. | +| `connectionPort` | string | ✓ | `21` | The port of the FTP server. | +| `username` | string | ✓ | | The username to access the FTP server. | +| `password` | string | ✓ | | The password to access the FTP server. | +| `directoryName` | string | ✓ | | The starting directory | +| `passiveMode` | boolean | | `false` | Specifes to use passive mode connection. | +| `recursive` | boolean | | `false` | If a directory, look for files in all the sub-directories as well. | +| `idempotent` | boolean | | `true` | Skip already-processed files. | +| `binary` | boolean | | `false` | Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false). | +| `autoCreate` | boolean | | `true` | Automatically create starting directory. | +| `delete` | boolean | | `false` | If true, the file will be deleted after it is processed successfully. | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:ftp` +- `camel:core` +- `camel:kamelet`