add release test script

This commit is contained in:
c9s 2022-06-08 15:05:44 +08:00
parent 5f01acaece
commit c1c2b03c90
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54
2 changed files with 16 additions and 2 deletions

View File

@ -15,6 +15,14 @@ sessions:
exchange: max
envVarPrefix: max
kucoin:
exchange: kucoin
envVarPrefix: kucoin
okex:
exchange: okex
envVarPrefix: okex
sync:
# userDataStream is used to sync the trading data in real-time
# it uses the websocket connection to insert the trades
@ -31,6 +39,8 @@ sync:
- binance
- binance_margin_dotusdt
- max
- okex
- kucoin
# symbols is the list of symbols you want to sync
# by default, BBGO try to guess your symbols by your existing account balances.
@ -47,6 +57,6 @@ sync:
marginAssets:
- USDT
# depositHistory: true
# rewardHistory: true
depositHistory: true
rewardHistory: true
withdrawHistory: true

4
scripts/release-test.sh Normal file
View File

@ -0,0 +1,4 @@
#!/bin/bash
set -e
dotenv -f .env.local.mysql -- go run ./cmd/bbgo sync --session binance --config config/sync.yaml
dotenv -f .env.local.sqlite -- go run ./cmd/bbgo sync --session binance --config config/sync.yaml