https://github.com/aetperf/plugin-fasttransfer
FastTransfer plugin for Kestra
https://github.com/aetperf/plugin-fasttransfer
datatransfer fasttransfer kestra
Last synced: 5 months ago
JSON representation
FastTransfer plugin for Kestra
- Host: GitHub
- URL: https://github.com/aetperf/plugin-fasttransfer
- Owner: aetperf
- License: apache-2.0
- Created: 2025-06-04T07:50:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-29T00:24:10.000Z (9 months ago)
- Last Synced: 2025-10-24T22:55:34.710Z (8 months ago)
- Topics: datatransfer, fasttransfer, kestra
- Language: Java
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Event-Driven Declarative Orchestrator
Get started with Kestra in 4 minutes.
# Kestra Plugin Template
> A template for creating Kestra plugins
This repository serves as a general template for creating a new [Kestra](https://github.com/kestra-io/kestra) plugin. It should take only a few minutes! Use this repository as a scaffold to ensure that you've set up the plugin correctly, including unit tests and CI/CD workflows.

## Running the project in local
### Prerequisites
- Java 21
- Docker
### Running tests
```
./gradlew check --parallel
```
### Launching the whole app
```
./gradlew shadowJar && docker build -t kestra-custom . && docker run --rm -p 8080:8080 kestra-custom server local
```
> [!NOTE]
> You need to relaunch this whole command everytime you make a change to your plugin
go to http://localhost:8080, your plugin will be available to use
## Documentation
* Full documentation can be found under: [kestra.io/docs](https://kestra.io/docs)
* Documentation for developing a plugin is included in the [Plugin Developer Guide](https://kestra.io/docs/plugin-developer-guide/)
## License
Apache 2.0 © [Kestra Technologies](https://kestra.io)
## Stay up to date
We release new versions every month. Give the [main repository](https://github.com/kestra-io/kestra) a star to stay up to date with the latest releases and get notified about future updates.
