Repository: incubator-griffin Updated Branches: refs/heads/master 2aa58c0b3 -> c21d16ec4
update document, modify user list address and some mistake in markdown file Author: Lionel Liu <[email protected]> Closes #252 from bhlx3lyx7/tmst. Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c21d16ec Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c21d16ec Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c21d16ec Branch: refs/heads/master Commit: c21d16ec4862008b79f847dcb7cd6b483eff530c Parents: 2aa58c0 Author: Lionel Liu <[email protected]> Authored: Mon Apr 9 14:12:32 2018 +0800 Committer: Lionel Liu <[email protected]> Committed: Mon Apr 9 14:12:32 2018 +0800 ---------------------------------------------------------------------- README.md | 4 ++-- griffin-doc/dev/dev-env-build.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/c21d16ec/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 37987d0..de4304c 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,9 @@ You can access [griffin home page](http://griffin.apache.org). You can contact us via email: - dev-list: <a href="mailto:[email protected]">[email protected]</a> -- user-list: <a href="mailto:[email protected]">[email protected]</a> +- user-list: <a href="mailto:[email protected]">[email protected]</a> -You can also subscribe this mail by sending a email to [subscribe dev-list](mailto:[email protected]) and [subscribe user-list](mailto:[email protected]). +You can also subscribe this mail by sending a email to [subscribe dev-list](mailto:[email protected]) and [subscribe user-list](mailto:[email protected]). You can access our issues on [JIRA page](https://issues.apache.org/jira/browse/GRIFFIN) http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/c21d16ec/griffin-doc/dev/dev-env-build.md ---------------------------------------------------------------------- diff --git a/griffin-doc/dev/dev-env-build.md b/griffin-doc/dev/dev-env-build.md index 6d842ae..fc981cb 100644 --- a/griffin-doc/dev/dev-env-build.md +++ b/griffin-doc/dev/dev-env-build.md @@ -32,7 +32,7 @@ For [Batch mode](../docker/griffin-docker-guide.md#how-to-use-griffin-docker-ima ## Run or Debug at local ### For service module If you need to develop the service module, you need to modify some configuration in the following files. -Docker host is your machine running the docker containers, which means if you install docker and run docker containers on 1.2.3.4, the <docker host ip> is 1.2.3.4. +Docker host is your machine running the docker containers, which means if you install docker and run docker containers on 192.168.100.100, then the `<docker host ip>` is 192.168.100.100. In service/src/main/resources/application.properties ``` @@ -92,7 +92,7 @@ cd ~/service ps -ef | grep service.jar kill -9 <pid of service.jar> ``` -2. Service and ui module are both packaged in service/target/service-<version>.jar, copy it into your docker container. +2. Service and ui module are both packaged in `service/target/service-<version>.jar`, copy it into your docker container. ``` docker cp service-<version>.jar <griffin docker container id>:/root/service/service.jar ``` @@ -104,7 +104,7 @@ nohup java -jar service.jar > service.log & Now you can follow the service log by `tail -f service.log`. ### For measure module -1. Measure module is packaged in measure/target/measure-<version>.jar, copy it into your docker container. +1. Measure module is packaged in `measure/target/measure-<version>.jar`, copy it into your docker container. ``` docker cp measure-<version>.jar <griffin docker container id>:/root/measure/griffin-measure.jar ``` @@ -141,4 +141,4 @@ griffin: 5. Now you can run your new griffin docker image. ``` docker-compose -f <docker-compose file> up -d -``` \ No newline at end of file +```
