archaeopteryx

package module
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 22, 2021 License: MIT Imports: 17 Imported by: 2

README

archaeopteryx

codecov Go Reference

This project is a prototype for microservice on Golang with all required dependencies

How to use

archaeopteryx helps you to create service with gRPC, gRPC proxy for REST API and some editional features from the box. All features can be found in the list

You can find example of project in the example folder.

Config

Service has configuration, bases on https://github.com/jinzhu/configor. Your application should reimplement config of server like:

import (
	archaeopteryx_config "github.com/iakrevetkho/archaeopteryx/pkg/config"
)

type Config struct {
	archaeopteryx_config.Config
}
Logger

Service has methods to create logger:

import (
	"github.com/sirupsen/logrus"
	archaeopteryx_config "github.com/iakrevetkho/archaeopteryx/logger"
)

func main(){
    var log *logrus.Entry
    log = logger.CreateLogger("main")
}

All messages will be formatted with component name to make easy search by this name:

Logs example

Service server interface

All custom services should implements interface service_server:

// IServiceServer - interface for services servers for archaeopteryx.
//
// All services should implements this interface
// to make possible archaeopteryx registrate services handlers in server
type IServiceServer interface {
	// RegisterGrpc - HealthServiceServer's method to registrate gRPC service server handlers
	RegisterGrpc(sr grpc.ServiceRegistrar) error
	// RegisterGrpcProxy - HealthServiceServer's method to registrate gRPC proxy service server handlers
	RegisterGrpcProxy(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
}

Features

Install dependencies

make install

Generate protobuf & docs

make generate

Presequinces

archaeopteryx requires folder for log files. To create it run:

sudo mkdir /var/log/archaeopteryx
sudo chown $USER /var/log/archaeopteryx

Test

Unit test

For unit tests use:

make test
Lint

For lint use:

make lint
gRPC

For testing gRPC API use Kreya

Folder kreya contains Kreya project for working with the project.

Also archaeopteryx is compatible with gRPC reflection

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Server

type Server struct {
	// contains filtered or unexported fields
}

func New

func New(cfg *config.Config, externalServices []service.IServiceServer) (*Server, error)

func (*Server) Run

func (s *Server) Run() error

Directories

Path Synopsis
proto/gen/hello_world/v1
Package hello_world is a reverse proxy.
Package hello_world is a reverse proxy.
proto/gen/user/v1
Package user is a reverse proxy.
Package user is a reverse proxy.
proto/gen/user/v2
Package user is a reverse proxy.
Package user is a reverse proxy.
pkg
proto
gen/health/v1
Package healthcheck is a reverse proxy.
Package healthcheck is a reverse proxy.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL