https://github.com/kestra-io/plugin-notion
https://github.com/kestra-io/plugin-notion
hacktoberfest kestra notion plugin
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kestra-io/plugin-notion
- Owner: kestra-io
- License: apache-2.0
- Created: 2025-07-02T09:33:26.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-10-03T10:03:44.000Z (6 days ago)
- Last Synced: 2025-10-03T12:09:18.347Z (6 days ago)
- Topics: hacktoberfest, kestra, notion, plugin
- Language: Java
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- 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
```### Development
`VSCode`:
Follow the README.md within the `.devcontainer` folder for a quick and easy way to get up and running with developing plugins if you are using VSCode.
`Other IDEs`:
```
./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 plugingo 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.
