yangpixi commented on code in PR #1032: URL: https://github.com/apache/dubbo-go-samples/pull/1032#discussion_r2825355941
########## router/condition/README_CN.md: ########## @@ -0,0 +1,67 @@ +# Condition router + +这个例子展示了如何使用dubbo-go的condition router功能。 + +[English](README.md) | 中文 + +## 前置准备 + +- Docker以及Docker Compose环境来运行Nacos注册中心。 +- Go 1.23+版本。 +- Nacos 2.x+版本。 + +## 如何运行 + +### 启动Nacos注册中心 + +参考这个教程来[启动Nacos](https://dubbo-next.staged.apache.org/zh-cn/overview/reference/integrations/nacos/)。 + +### 运行服务端(Provider) + +在这个示例中,你将运行两个服务端,分别在20000以及20001端口上提供服务。 + +```shell +$ go run ./go-server/cmd/server.go # 20000端口 +$ go run ./go-copy-server/cmd/server_copy.go # 20001端口 Review Comment: 那我今天再改改 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
