mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
16 lines
515 B
Bash
16 lines
515 B
Bash
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 Aaron Dewes <aaron.dewes@protonmail.com>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
CITADEL_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
echo "Citadel root directory is ${CITADEL_ROOT}"
|
|
alias update="${CITADEL_ROOT}/scripts/update/update"
|
|
alias lncli="docker exec -it lnd lncli"
|
|
alias bitcoin-cli="docker exec -it bitcoin bitcoin-cli"
|
|
alias docker-compose="sudo docker compose"
|
|
alias docker="sudo docker"
|
|
alias debug="${CITADEL_ROOT}/scripts/debug"
|