Skip to content

Commit d9e11f4

Browse files
authored
docs(extensions): make links absolute (#196)
Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
1 parent 38f42c8 commit d9e11f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/controlplane/plugins/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Chainloop Plugins
1+
# Plugins Overview
22

33
Chainloop plugins are a way to add functionality to Chainloop by integrating with third-parties.
44

@@ -112,13 +112,13 @@ A Discord webhook plugin will
112112

113113
## How to create a new plugin
114114

115-
We offer a [starter template](./core/template) that can be used as baseline. Just copy it to a new folder i.e `core/my-plugin/v1` to get started.
115+
We offer a [starter template](https://github.com/chainloop-dev/chainloop/tree/main/app/controlplane/plugins/core/template) that can be used as baseline. Just copy it to a new folder i.e `core/my-plugin/v1` to get started.
116116

117117
Next:
118118

119119
- Replace all the occurrences of `template` in the code with your plugin name.
120-
- Add it to the list of available plugins [here](`./plugins.go`). This will make this plugin available the next time the control plane starts.
120+
- Add it to the list of available plugins [here](https://github.com/chainloop-dev/chainloop/blob/main/app/controlplane/plugins/plugins.go). This will make this plugin available the next time the control plane starts.
121121
- Define the API request payloads for both Registration and Attachment.
122-
- Implement the [FanOutPlugin interface](https://github.com/chainloop-dev/chainloop/blob/main/app/controlplane/plugins/sdk/v2/fanout.go#L55). The template comes prefilled with some commented out code as guideline.
122+
- Implement the [FanOutPlugin interface](https://github.com/chainloop-dev/chainloop/blob/main/app/controlplane/plugins/sdk/v1/fanout.go#L80). The template comes prefilled with some commented out code as guideline.
123123

124-
Remember that you can find some examples of fully functional plugins in [here](./core/).
124+
Remember that you can find some examples of fully functional plugins in [here](https://github.com/chainloop-dev/chainloop/tree/main/app/controlplane/plugins/core).

0 commit comments

Comments
 (0)