mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
16 lines
502 B
Bash
16 lines
502 B
Bash
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CITADEL_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
alias citadel-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"
|
|
alias app="${CITADEL_ROOT}/scripts/app"
|