-
Notifications
You must be signed in to change notification settings - Fork 5
/
run-all.sh
executable file
·33 lines (30 loc) · 1.3 KB
/
run-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env bash
cd "$(dirname "$0")"
PORT=9000 subway --config configs/acala.yml &
PORT=9001 subway --config configs/karura.yml &
PORT=9002 subway --config configs/kusama.yml &
PORT=9003 subway --config configs/polkadot.yml &
PORT=9004 subway --config configs/statemine.yml &
PORT=9005 subway --config configs/statemint.yml &
PORT=9006 subway --config configs/basilisk.yml &
PORT=9007 subway --config configs/hydraDX.yml &
PORT=9008 subway --config configs/moonbeam.yml &
PORT=9009 subway --config configs/moonriver.yml &
PORT=9010 subway --config configs/astar.yml &
PORT=9011 subway --config configs/shiden.yml &
PORT=9012 subway --config configs/bifrost.yml &
PORT=9013 subway --config configs/altair.yml &
PORT=9014 subway --config configs/heiko.yml &
PORT=9015 subway --config configs/bifrostpolkadot.yml &
PORT=9016 subway --config configs/parallel.yml &
PORT=9017 subway --config configs/centrifuge.yml &
PORT=9018 subway --config configs/crust.yml &
PORT=9019 subway --config configs/quartz.yml &
PORT=9020 subway --config configs/unique.yml &
PORT=9021 subway --config configs/interlay.yml &
PORT=9022 subway --config configs/kintsugi.yml &
PORT=9023 subway --config configs/khala.yml &
PORT=9024 subway --config configs/phala.yml &
PORT=9025 subway --config configs/crab.yml &
trap 'kill $(jobs -p)' EXIT
wait