From 011ba645bb2e275d58539783182fd3d0bba1cab1 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Tue, 9 Apr 2024 11:51:24 +0200 Subject: [PATCH] meta: add possibility to install cln plugin with coffee 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 --- coffee.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 coffee.yml diff --git a/coffee.yml b/coffee.yml new file mode 100644 index 00000000..143466ee --- /dev/null +++ b/coffee.yml @@ -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