Skip to content

Commit 1adcece

Browse files
committed
docs(): initial commit
1 parent b997443 commit 1adcece

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV HOME="/root"
1616
# --------------------------------------
1717
# Need to add the devcontainer workspace folder as a safe directory to enable git
1818
# version control system to be enabled in the containers file system.
19-
RUN git config --global --add safe.directory "/workspaces/plugin-template"
19+
RUN git config --global --add safe.directory "/workspaces/plugin-beam"
2020
# --------------------------------------
2121

2222
# --------------------------------------
@@ -53,7 +53,7 @@ ENV PATH="$PATH:$JAVA_HOME/bin"
5353
# Will load a custom configuration file for Micronaut
5454
ENV MICRONAUT_ENVIRONMENTS=local,override
5555
# Sets the path where you save plugins as Jar and is loaded during the startup process
56-
ENV KESTRA_PLUGINS_PATH="/workspaces/plugin-template/local/plugins"
56+
ENV KESTRA_PLUGINS_PATH="/workspaces/plugin-beam/local/plugins"
5757
# --------------------------------------
5858

5959
# --------------------------------------

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "plugin-template",
2+
"name": "plugin-beam",
33
"build": {
44
"context": ".",
55
"dockerfile": "Dockerfile"
66
},
7-
"workspaceFolder": "/workspaces/plugin-template",
7+
"workspaceFolder": "/workspaces/plugin-beam",
88
"forwardPorts": [8080],
99
"customizations": {
1010
"vscode": {

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@
3636
<p align="center" style="color:grey;"><i>Get started with Kestra in 3 minutes.</i></p>
3737

3838

39-
# Kestra Plugin Template
39+
# Kestra Apache Beam Plugin
4040

41-
> A template for creating Kestra plugins
42-
43-
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.
41+
> A plugin to work with Apache Beam
4442
4543
![Kestra orchestrator](https://kestra.io/video.gif)
4644

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ java {
2929
}
3030

3131
group = "io.kestra.plugin"
32-
description = 'Plugin template for Kestra'
32+
description = 'Apache Beam Plugin for Kestra'
3333

3434
tasks.withType(JavaCompile).configureEach {
3535
options.encoding = "UTF-8"
@@ -175,8 +175,8 @@ jar {
175175
manifest {
176176
attributes(
177177
"X-Kestra-Name": project.name,
178-
"X-Kestra-Title": "Template",
179-
"X-Kestra-Group": project.group + ".templates",
178+
"X-Kestra-Title": "Apache Beam",
179+
"X-Kestra-Group": project.group + ".beam",
180180
"X-Kestra-Description": project.description,
181181
"X-Kestra-Version": project.version
182182
)

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'plugin-template'
1+
rootProject.name = 'plugin-beam'

0 commit comments

Comments
 (0)