Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@
[submodule "reference-code/rebalance-lnd"]
path = reference-code/rebalance-lnd
url = https://github.com/C-Otto/rebalance-lnd
[submodule "remote-signer"]
path = remote-signer
url = https://github.com/Elenpay/Nodeguard-Remote-Signer
branch = develop
16 changes: 16 additions & 0 deletions .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,22 @@ mine:
update-protos:
./src/Proto/update-protos.sh

##############
# Submodules #
##############

REMOTE_SIGNER_URL := 'https://github.com/Elenpay/Nodeguard-Remote-Signer'
REMOTE_SIGNER_DIR := 'remote-signer'

# Add the Remote Signer submodule, or initialize it on a fresh clone
add-remote-signer:
git submodule add -b develop {{REMOTE_SIGNER_URL}} {{REMOTE_SIGNER_DIR}} 2>/dev/null || git submodule update --init {{REMOTE_SIGNER_DIR}}

# Sync the Remote Signer submodule config and update it to the latest remote develop commit
sync-remote-signer:
git submodule sync {{REMOTE_SIGNER_DIR}}
git submodule update --init --remote {{REMOTE_SIGNER_DIR}}

##########
# Docker #
##########
Expand Down
1 change: 1 addition & 0 deletions remote-signer
Submodule remote-signer added at 3e840e
Loading