Files
sphinx-key/broker
irriden dae0655fde bump sphinx-rs: relax thiserror dependency
this points to a relaxation of the thiserror dependency back to 1.0.44
and up. the memory growth was not due to v1.0.44 of thiserror, but
rather to the increase of the version of thiserror without doing a
complete rebuild from scratch ie. cargo clean + rm -rf .embuild"
2023-07-29 20:14:28 +00:00
..
2022-05-25 16:16:02 -07:00
2022-09-21 12:39:25 -07:00
2022-09-09 10:18:19 -07:00

build w docker

navigate to top level (sphinx-key)

docker build -f broker/Dockerfile -t sphinx-key-broker .

test locally

To run the broker test against the esp32-c3:

cargo run -- --test

w docker

cid=$(docker create sphinx-key-broker) docker cp $cid:/usr/src/sphinx-key-broker - > local-key-broker docker rm -v $cid

c-lightning

get the version

git describe --tags --long --always --match='v*.*'

and only take the last 8 chars of the last string

or

docker run -it --entrypoint "/bin/bash" sphinx-cln

lightningd --version

build c-lightning

docker build . -t sphinx-cln

docker tag sphinx-cln sphinxlightning/sphinx-cln-vls:0.1.4

docker push sphinxlightning/sphinx-cln-vls:0.1.4

testing

cargo run --bin sphinx-key-tester -- --log

find pid

ps aux | grep -i sphinx-key-broker

Run against LSS

export VLS_LSS=http://127.0.0.1:55551