https://github.com/accentdesign/grpc
A collection of useful gRPC services
https://github.com/accentdesign/grpc
go grpc python services
Last synced: 5 months ago
JSON representation
A collection of useful gRPC services
- Host: GitHub
- URL: https://github.com/accentdesign/grpc
- Owner: AccentDesign
- License: mit
- Created: 2023-04-01T10:01:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-02T09:44:21.000Z (about 1 year ago)
- Last Synced: 2025-12-24T08:09:02.081Z (6 months ago)
- Topics: go, grpc, python, services
- Language: Go
- Homepage:
- Size: 240 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# gRPC Services
[](https://github.com/AccentDesign/grpc/actions/workflows/go-test.yml)
Services hosted within Accent Design using Google Remote Procedure Call.
## Services
A list of all the service built in this library:
| Service | Description | |
|---------------------------|------------------------------------|-----------------------------------------------------------------|
| [Auth](./services/auth) | Email and password authentication | [Dockerhub](https://hub.docker.com/r/accent/grpc-service-auth) |
| [Email](./services/email) | SMTP email with file attachments | [Dockerhub](https://hub.docker.com/r/accent/grpc-service-email) |
## Tools
Some useful external tools:
FastAPI Boilerplate
A boilerplate written in Python, Pydantic and SQLAlchemy using the following services
* Auth
* Email
https://github.com/stuartaccent/fastapi-boilerplate
gRPC Web UI
Connect to a running gRPC service that has reflection enabled
```bash
docker run \
--publish 8080:8080 \
fullstorydev/grpcui:latest \
-bind 0.0.0.0 -port 8080 -plaintext host.docker.internal:50051
```