nicolas.dorier
5 years ago
3 changed files with 41 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#!/bin/bash |
|||
|
|||
while true; do |
|||
if curl -sL -w "%{http_code}\\n" "http://localhost/" -o /dev/null > /dev/null; then |
|||
break |
|||
fi |
|||
sleep 1 |
|||
done |
@ -0,0 +1,20 @@ |
|||
#!/bin/bash |
|||
|
|||
set -e |
|||
|
|||
cd .. |
|||
|
|||
export BTCPAY_HOST="btcpay.example.local" |
|||
export NBITCOIN_NETWORK="mainnet" |
|||
export BTCPAYGEN_CRYPTO1="btc" |
|||
export BTCPAYGEN_CRYPTO2="ltc" |
|||
export BTCPAYGEN_REVERSEPROXY="nginx" |
|||
export BTCPAYGEN_LIGHTNING="clightning" |
|||
source ./btcpay-setup.sh -i |
|||
|
|||
timeout 10m bash test-connectivity.sh |
|||
|
|||
# Testing scripts are not crashing and installed |
|||
btcpay-up.sh |
|||
btcpay-update.sh |
|||
btcpay-down.sh |
Loading…
Reference in new issue