-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
11,803 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PROJECT = grpc | ||
PROJECT_DESCRIPTION = gRPC in Erlang | ||
PROJECT_VERSION = 0.1.0 | ||
|
||
# Whitespace to be used when creating files from templates. | ||
SP = 4 | ||
|
||
DEPS = gpb cowboy chatterbox | ||
dep_cowboy = git https://github.com/willemdj/cowboy | ||
dep_chatterbox = git https://github.com/willemdj/chatterbox | ||
include erlang.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# gRPC | ||
|
||
An implementation of gRPC in Erlang. | ||
|
||
## Build | ||
gRPC uses [erlang.mk](https://erlang.mk/) as build tool. On Unix systems it can be built | ||
with: | ||
|
||
``` | ||
make | ||
``` | ||
|
||
`make doc` can be used to generate documentation for the individual | ||
modules from edoc comments in thos modules. | ||
|
||
See the [erlang.mk documentation](https://erlang.mk/guide/installation.html#_on_windows) for | ||
an explanation on how the tool can be used in a Windows environment. | ||
|
||
## Testing | ||
`make ct` can be used to run a number of tests. | ||
|
||
In the test directory there is an explanation how the software can be | ||
tested against the go grpc implementation. | ||
|
||
## Dependencies | ||
|
||
- [gpb](https://github.com/tomas-abrahamsson/gpb) is used to encode and | ||
decode the protobuf messages. | ||
|
||
- [cowboy](https://github.com/willemdj/cowboy) is used for the server. | ||
This is a fork with some changes to the support for HTTP/2. | ||
|
||
- [chatterbox](https://github.com/willemdj/chatterbox) is used for the | ||
client. This is also a fork with a couple of modifications related to missing | ||
HTTP/2 features. | ||
|
||
## gRPC functionality | ||
|
||
[tutorial](/doc/tutorial.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@title grpc - an Erlang implementation of gRPC |
Oops, something went wrong.