From 77544360c88524a485b22ae39510997dde25ebad Mon Sep 17 00:00:00 2001 From: TankTian Date: Tue, 23 May 2017 21:04:48 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0320583d1..dd4c1445f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,54 @@ -# service-center -A standalone service center to allow services to register their instance information and to discover providers of a given service +# Service Center + +A standalone Service Center to allow services to register their instance information and to discover providers of a given service + +- [http://www.servicecomb.io/service-center](http://www.servicecomb.io/service-center) + +## Quick Start + +### Getting Service Center + +The easiest way to get Service Center is to use one of the pre-built release binaries which are available for OSX, Linux, Windows, and Docker. Instructions for using these binaries are on the [GitHub releases page][github-release]. + +[github-release]: https://github.com/servicecomb/service-center/releases/ + +### Running Service Center + +First, you need to run a etcd(version: 1.3.x) as a database service,and then modify the etcd IP and port in the Service Center configuration file (./conf/app.conf : manager_cluster). + +```sh +./bin/start.sh +``` +This will bring up Service Center listening on port 30100 for service communication. + +## Documentation + +Project documentation is available on the ServiceComb website. + +http://www.servicecomb.io/service-center/documentation + +## Building + +You don’t need to build from source to use Service Center (binaries on the [GitHub releases page][github-release]), but if you want to try out the latest and greatest, Service Center can be easily built. You can refer to this compilation script([.travis.yml][travis.yml]). + +[github-release]: https://github.com/servicecomb/service-center/releases/ +[travis.yml]: https://github.com/ServiceComb/service-center/blob/master/.travis.yml + +## Automated Testing + + +## Contact + +Mailing list: + +Planning/Roadmap: milestones, roadmap + +Bugs: issues + +## Contributing + +See CONTRIBUTING for details on submitting patches and the contribution workflow. + +## Reporting Issues + +See reporting bugs for details about reporting any issues. From 97b835a3a94aa047b3a673092d04dda708d62592 Mon Sep 17 00:00:00 2001 From: TankTian Date: Wed, 24 May 2017 09:59:34 +0800 Subject: [PATCH 2/2] JAV-42 update the readme --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 8ce432289..bd0c44286 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ A standalone Service Center to allow services to register their instance information and to discover providers of a given service -- [http://www.servicecomb.io/service-center](http://www.servicecomb.io/service-center) ## Quick Start @@ -25,7 +24,6 @@ This will bring up Service Center listening on port 30100 for service communicat Project documentation is available on the ServiceComb website. -http://www.servicecomb.io/service-center/documentation ## Building