-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated generated code and fixed isses (#69)
* Updated codegen * Update CHANGELOG.md * Fix newlines * Fixed auth * Updated tests * Fixed test * Fixed code generator * Further API gen fixes * Update realtime.py * Update test_client.lua
- Loading branch information
Showing
7 changed files
with
148 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
go run rest.go ../../nakama/apigrpc/apigrpc.swagger.json > ../nakama/nakama.lua | ||
python realtime.py ../../nakama-common/ ../nakama/socket.lua | ||
NAKAMA=../../nakama | ||
NAKAMA_APIGRPC=${NAKAMA}/apigrpc | ||
NAKAMA_COMMON=../../nakama-common/ | ||
|
||
go run rest.go ${NAKAMA_APIGRPC}/apigrpc.swagger.json > ../nakama/nakama.lua | ||
python realtime.py ${NAKAMA_COMMON} ../nakama/socket.lua | ||
|
||
pushd ${NAKAMA} | ||
NAKAMA_GRPC_VERISON=$(git describe --tags --abbrev=0) | ||
popd | ||
|
||
pushd ${NAKAMA_COMMON} | ||
NAKAMA_COMMON_VERISON=$(git describe --tags --abbrev=0) | ||
popd | ||
|
||
|
||
echo "Nakama gRPC version: ${NAKAMA_GRPC_VERISON}" | ||
echo "Nakama real-time version: ${NAKAMA_COMMON_VERISON}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters