Skip to content

Commit

Permalink
meta: add possibility to install cln plugin with coffee
Browse files Browse the repository at this point in the history
Core lightning is starting to support a decent plugin manager that gives you the possibility to install a plugin without care about the process.

Coffee [1] is a plugin manager that uses the manifest like all basic plugin managers (npm, pacman ...).

So this commit is adding support for coffee and allowing people to install plugins with the following command:

```
coffee remote add teos-git https://github.com/talaia-labs/rust-teos.git
coffee install rust-teos -v
coffee list
```

[1] https://github.com/coffee-tools/coffee
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Sep 1, 2024
1 parent 609da2d commit 011ba64
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions coffee.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
plugin:
name: rust-teos
version: 0.2.0
lang: rust
install: |
cargo build --release --locked --package watchtower-plugin
cp target/release/watchtower-client .
cargo clean
main: watchtower-client

0 comments on commit 011ba64

Please sign in to comment.