Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanv92/golang-grpc-example
https://github.com/sanv92/golang-grpc-example
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sanv92/golang-grpc-example
- Owner: sanv92
- Created: 2017-12-14T18:27:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-14T18:34:26.000Z (about 7 years ago)
- Last Synced: 2024-05-07T18:25:43.262Z (8 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```