todoapiapp

package
v0.0.0-...-65b0565 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2024 License: BSD-3-Clause Imports: 29 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ErrCreateHealthCheck errors.Msg = "failed to create health checker"
	ErrSetupTelemetry    errors.Msg = "failed to set up telemetry"
	ErrSetupDatabase     errors.Msg = "failed to set up database"
	ErrSetupService      errors.Msg = "failed to set up service handler"
	ErrSetupServer       errors.Msg = "failed to set up server"
	ErrStartServer       errors.Msg = "failed to start server"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type App

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

func New

func New(conf Config, log zerolog.Logger, bld *buildinfo.BuildInfo) (*App, error)

func (*App) RouteHandler

func (app *App) RouteHandler() serv.RouteHandler

func (*App) Run

func (app *App) Run(ctx context.Context) error

func (*App) Shutdown

func (app *App) Shutdown(ctx context.Context) error

type Config

type Config struct {
	Log struct {
		Level         zerolog.Level `default:"info"`
		WithTimestamp bool          `env:"LOG_TIMESTAMP" default:"true"`
		AccessLog     bool          `env:"LOG_ACCESS" default:"true"`
	} `env:",include"`

	Telemetry  telemetry.Config
	ServerPort serv.Port `default:"8080"`
	ServerTLS  easytls.Config

	DB DBConfig `env:",include"`
}

Config is the configuration for App.

func (Config) Validate

func (c Config) Validate() error

type DBConfig

type DBConfig struct {
	Host     string    `default:"localhost"`
	Port     serv.Port `default:"5432"`
	Database string    `default:"challenge"`
	Username string
	Password string
	SSLMode  string `default:"prefer"`
}

func (DBConfig) DSN

func (c DBConfig) DSN() string

func (DBConfig) Validate

func (c DBConfig) Validate() error

Jump to

Keyboard shortcuts

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