Skip to content

Commit

Permalink
Documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Avetisyan committed Jan 17, 2017
1 parent a728b46 commit 8a97a3c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
32 changes: 29 additions & 3 deletions docs/dev_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* [Maven](#maven)
* [Git Client](#git-client)
* [Go](#go)
* [Node JS](#node-js)
* [Build Steps](#build-steps)

## Development Tools
Expand Down Expand Up @@ -44,14 +45,39 @@ one from [Git website](https://git-scm.com/downloads)
Install go by following the directions at
[Getting Started - The Go Programming Language](https://golang.org/doc/install).

### Node JS
-----------

Install node by following the directions at
[Node.js JavaScript Runtime](https://nodejs.org/en/)

Verify that you have the required minimum version of `node` and
`nodemon` binaries installed on your system and are included
in your runtime path:

```shell
$ node --version
v6.9.4
$ nodemon --version
1.11.0
```

## Build Steps
--------------

To build Athenz components, change to the top level directory where
Athenz code has been checked out and execute:

```shell
$ git clone https://github.com/yahoo/athenz.git
$ cd athenz
$ mvn clean install
```
git clone https://github.com/yahoo/athenz.git
cd athenz
mvn clean install

To build the release packages after the build has completed
successfully:

```shell
$ cd assembly
$ mvn clean package
```
1 change: 1 addition & 0 deletions docs/setup_ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ successfully validate ZMS Server's certificate.
$ cd athenz-ui-X.Y
$ bin/<platform>/zms-cli -c keys/zms_cert.pem -z https://<zms-server>:4443/zms/v1 add-domain athenz
$ bin/<platform>/zms-cli -c keys/zms_cert.pem -z https://<zms-server>:4443/zms/v1 -d athenz add-service ui 0 keys/athenz.ui_pub.pem
```

## Start UI Server
------------------
Expand Down
1 change: 1 addition & 0 deletions docs/setup_ui_prod.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ register a new service in `athenz` domain:
$ cd athenz-ui-X.Y
$ bin/<platform>/zms-cli -z https://<zms-server>:4443/zms/v1 add-domain athenz
$ bin/<platform>/zms-cli -z https://<zms-server>:4443/zms/v1 -d athenz add-service ui 0 keys/athenz.ui_pub.pem
```

## Start UI Server
------------------
Expand Down

0 comments on commit 8a97a3c

Please sign in to comment.