https://github.com/rcsolis/endoflife_server
Contains the endoflife server application exposing and gRPC API and consume REST API
https://github.com/rcsolis/endoflife_server
grcp-server grpc-go grpc-golang
Last synced: about 2 months ago
JSON representation
Contains the endoflife server application exposing and gRPC API and consume REST API
- Host: GitHub
- URL: https://github.com/rcsolis/endoflife_server
- Owner: rcsolis
- License: mit
- Created: 2025-01-11T02:50:51.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-09T05:05:47.000Z (3 months ago)
- Last Synced: 2025-02-10T23:59:09.032Z (3 months ago)
- Topics: grcp-server, grpc-go, grpc-golang
- Language: Go
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# End of life Server
**Author:Rafael Chavez Solis**
***Email:[email protected]***
## Description
Contains the endoflife server application for retrive information about releases and versions of several technologies.
Expose a gRPC service API with two methods:
- GetAllVersions: Stream all versions available
- GetDetails: Returns details about specific versionConsumes the [EndOfLife API](https://endoflife.date/api/) to get the information.
## Architecture
This repository contains the componets highlighting in orange.

The logging ilustrates the use of standard log output using the *log standard package*.
### gRPC
Command to build:
```bash
protoc --proto_path=./ \
--go_out=./ \
--go_opt=paths=source_relative \
--go-grpc_out=./ \
--go-grpc_opt=paths=source_relative,require_unimplemented_servers=false \
./internal/proto/*.proto
```## Stack:
- Go 1.23.4
- ProtocolBufers 3 (proto3)
- google.golang.org/grpc
- google.golang.org/grpc/codes
- google.golang.org/grpc/status