-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprerreq.sh
34 lines (24 loc) · 1.18 KB
/
prerreq.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
34
#!/bin/bash
#GO
echo " ####################################################### "
echo " # INSTALLING SWAG # "
echo " ####################################################### "
go install github.com/swaggo/swag/cmd/swag@v1.7.0
#GO
echo " ####################################################### "
echo " # ENVIRONMENT # "
echo " ####################################################### "
echo 'export HLF_DAPP_CONFIG="$HOME/api.dapp/conf.linux_and_wsl.yaml"' >> ~/.bash_profile
source ~/.bash_profile
echo " ####################################################### "
echo " # generating RESTful API documentation # "
echo " ####################################################### "
cd $HOME/api.dapp
swag init --parseDependency --parseInternal --parseDepth 1 --md docs/md_endpoints
go mod tidy
go mod vendor
#go get
echo " ####################################################### "
echo " # building the solution # "
echo " ####################################################### "
go build -o api.dapp