walkline / ToCloud9

Scalable and highly available solution for TrinityCore/AzerothCore
MIT License
46 stars 5 forks source link

Typo in the guide for build without docker #12

Closed lorac2k14 closed 6 months ago

lorac2k14 commented 6 months ago

I was trying both forms of installation and in the process without docker I discovered a small typo

go build -o bin/authserver.exe apps/authserver/cmd/authserver/main.go go build -o bin/charserver.exe apps/charserver/cmd/charserver/main.go go build -o bin/chatserver.exe apps/chatserver/cmd/chatserver/main.go go build -o bin/game-load-balancer.exe apps/game-load-balancer/cmd/game-load-balancer/main.go go build -o bin/servers-registry.exe apps/servers-registry/cmd/servers-registry/main.go go build -o bin/guidserver.exe apps/guidserver/cmd/guidserver/main.go go build -o bin/guildserver.exe apps/guildserver/cmd/guildserver/main.go ---> go build -o bin/groupserver.exe apps/guildserver/cmd/groupserver/main.go <---- go build -o bin/mailserver.exe apps/mailserver/cmd/mailserver/main.go

It should be go build -o bin/authserver.exe apps/authserver/cmd/authserver/main.go go build -o bin/charserver.exe apps/charserver/cmd/charserver/main.go go build -o bin/chatserver.exe apps/chatserver/cmd/chatserver/main.go go build -o bin/game-load-balancer.exe apps/game-load-balancer/cmd/game-load-balancer/main.go go build -o bin/servers-registry.exe apps/servers-registry/cmd/servers-registry/main.go go build -o bin/guidserver.exe apps/guidserver/cmd/guidserver/main.go go build -o bin/guildserver.exe apps/guildserver/cmd/guildserver/main.go ---> go build -o bin/groupserver.exe apps/groupserver/cmd/groupserver/main.go <----- go build -o bin/mailserver.exe apps/mailserver/cmd/mailserver/main.go

The issue was with the group server. but after checking things over this fixes the go build process.

I hope this helps some Thank you so much for your hard work. Hopefully once I fully understand the framework I will be able to assist you in this project. This is very close to how Blizz Servers are structured.

lorac2k14 commented 6 months ago

Do not know why it double posted so im closing this one