mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 01:54:09 +01:00
21 lines
609 B
Bash
Executable File
21 lines
609 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
command -v swagger >/dev/null 2>&1 || {
|
|
echo >&2 "Command 'swagger' not installed. See: https://github.com/go-swagger/go-swagger for installation"
|
|
exit 1
|
|
}
|
|
|
|
scriptPath=$(realpath $0)
|
|
scriptDir=$(dirname "$scriptPath")
|
|
|
|
zrokDir=$(realpath "$scriptDir/..")
|
|
|
|
zrokSpec=$(realpath "$zrokDir/specs/zrok.yml")
|
|
|
|
echo "...generating zrok server"
|
|
swagger generate server -f "$zrokSpec" -s rest_server_zrok -t "$zrokDir" -m "rest_model_zrok" --exclude-main
|
|
|
|
echo "...generating zrok client"
|
|
swagger generate client -f "$zrokSpec" -c rest_client_zrok -t "$zrokDir" -m "rest_model_zrok" |