forked from 1kx-network/hexcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
22 lines (18 loc) · 882 Bytes
/
deploy.sh
File metadata and controls
22 lines (18 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# use: ./deploy.sh hexwood5 <private_key>
echo "deploying headquarter..."
ds apply -n $1 -k $2 -f game/config/Headquarter.yaml
echo "-----\n"
echo "deploying team bases..."
ds apply -n $1 -k $2 -f game/config/BlueBase.yaml
ds apply -n $1 -k $2 -f game/config/RedBase.yaml
echo "-----\n"
echo "deploying class system buildings..."
ds apply -n $1 -k $2 -f characterClasses/config/BardsConcertHall.yaml
ds apply -n $1 -k $2 -f characterClasses/config/ClericsTent.yaml
ds apply -n $1 -k $2 -f characterClasses/config/FightersArena.yaml
ds apply -n $1 -k $2 -f characterClasses/config/PaladinsArmoury.yaml
ds apply -n $1 -k $2 -f characterClasses/config/WizardsMaze.yaml
echo "deploying engineering system buildings..."
ds apply -n $1 -k $2 -f engineers/config/Blacksmith.yaml
ds apply -n $1 -k $2 -f engineers/config/Barrier.yaml
ds apply -n $1 -k $2 -f engineers/config/Cannon.yaml