Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Add a description about development #33

Merged
merged 1 commit into from
Oct 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,38 @@ IPDrawer is IP Address Management (IPAM) application and the code is written in
* [REST API Reference](/pkg/server/apiclient/README.md)
* `./ipdrawer start --redis-host localhost` and access to `http://localhost:25577/swagger-ui`

## Development

### Prerequisite

* Go
* make
* dep

```bash
$ make deps
$ dep ensure
```

### Generate a binary

```bash
$ make
$ ./ipdrawer --help
```

### Generate proto files

```bash
$ make proto
```

### Run test

```bash
$ make test
```

## Author

[taku-k](https://github.com/taku-k)