Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sanv92/golang-grpc-example


https://github.com/sanv92/golang-grpc-example

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Description
- Protobuf
- Rest api (fallback)
- Swagger

------------

## Makefile
- make

------------

## Swagger
```
docker run --rm \
--name swagger_server \
-d \
-p 9000:8080 \
-e API_URL=swagger.json \
swaggerapi/swagger-ui && \
\
FIND_SWAGGER_FILES="$(find . -type f -name '*.swagger.json')" && \
for f in $FIND_SWAGGER_FILES; do docker cp $f swagger_server:/usr/share/nginx/html; done
```