config

package
v0.0.0-...-fb57439 Latest Latest
Warning

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

Go to latest
Published: May 17, 2024 License: GPL-3.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Roles = roles{
	Roles: base_roles.BaseRoles,
	Listing: listingRoles{
		Super:   "listing.super",
		Create:  "listing.create",
		Update:  "listing.update",
		Delete:  "listing.delete",
		Enable:  "listing.enable",
		Disable: "listing.disable",
		ReOrder: "listing.re_order",
		Restore: "listing.restore",
		List:    "listing.list",
		View:    "listing.view",
	},
	Business: businessRoles{
		Super: "business.super",
	},
}

Functions

This section is empty.

Types

type App

type App struct {
	Protocol string `env:"PROTOCOL" envDefault:"http"`
	DB       struct {
		Listing MongoListing
	}
	Grpc        Grpc
	Http        Http
	HttpHeaders HttpHeaders
	I18n        I18n
	Topics      Topics
	Session     Session
	Nats        Nats
	Redis       Redis
	TokenSrv    TokenSrv
	CacheRedis  CacheRedis
	CDN         CDN
	RSA         RSA
}

type BookingTopics

type BookingTopics struct {
	ValidationSuccess string `env:"STREAMING_TOPIC_BOOKING_VALIDATION_SUCCESS"`
	ValidationFail    string `env:"STREAMING_TOPIC_BOOKING_VALIDATION_FAIL"`
	ValidationStart   string `env:"STREAMING_TOPIC_BOOKING_VALIDATION_START"`
}

type CDN

type CDN struct {
	Url string `env:"CDN_URL" envDefault:"http://localhost:3000"`
}

type CacheRedis

type CacheRedis struct {
	Host string `env:"REDIS_CACHE_HOST"`
	Port string `env:"REDIS_CACHE_PORT"`
	Pw   string `env:"REDIS_CACHE_PASSWORD"`
	Db   int    `env:"REDIS_CACHE_DB"`
}

type CategoryTopics

type CategoryTopics struct {
	ListingValidationSuccess string `env:"STREAMING_TOPIC_CATEGORY_LISTING_VALIDATION_SUCCESS"`
}

type Grpc

type Grpc struct {
	Port int `env:"GRPC_PORT" envDefault:"3001"`
}

type Http

type Http struct {
	Host  string `env:"SERVER_HOST" envDefault:"localhost"`
	Port  int    `env:"SERVER_PORT" envDefault:"3000"`
	Group string `env:"SERVER_GROUP" envDefault:"account"`
}

type HttpHeaders

type HttpHeaders struct {
	AllowedOrigins   string `env:"CORS_ALLOWED_ORIGINS" envDefault:"*"`
	AllowedMethods   string `env:"CORS_ALLOWED_METHODS" envDefault:"GET,LISTING,PUT,DELETE,OPTIONS"`
	AllowedHeaders   string `env:"CORS_ALLOWED_HEADERS" envDefault:"*"`
	AllowCredentials bool   `env:"CORS_ALLOW_CREDENTIALS" envDefault:"true"`
	Domain           string `env:"HTTP_HEADER_DOMAIN" envDefault:"*"`
}

type I18n

type I18n struct {
	Fallback string   `env:"I18N_FALLBACK_LANGUAGE" envDefault:"en"`
	Dir      string   `env:"I18N_DIR" envDefault:"./src/locales"`
	Locales  []string `env:"I18N_LOCALES" envDefault:"en,tr"`
}

type ListingTopics

type ListingTopics struct {
	Created   string `env:"STREAMING_TOPIC_LISTING_CREATED"`
	Updated   string `env:"STREAMING_TOPIC_LISTING_UPDATED"`
	Deleted   string `env:"STREAMING_TOPIC_LISTING_DELETED"`
	Disabled  string `env:"STREAMING_TOPIC_LISTING_DISABLED"`
	Enabled   string `env:"STREAMING_TOPIC_LISTING_ENABLED"`
	ReOrdered string `env:"STREAMING_TOPIC_LISTING_REORDERED"`
	Restored  string `env:"STREAMING_TOPIC_LISTING_RESTORED"`
}

type MongoListing

type MongoListing struct {
	Host       string `env:"MONGO_LISTING_HOST" envDefault:"localhost"`
	Port       string `env:"MONGO_LISTING_PORT" envDefault:"27017"`
	Username   string `env:"MONGO_LISTING_USERNAME" envDefault:""`
	Password   string `env:"MONGO_LISTING_PASSWORD" envDefault:""`
	Database   string `env:"MONGO_LISTING_DATABASE" envDefault:"account"`
	Collection string `env:"MONGO_LISTING_COLLECTION" envDefault:"accounts"`
	Query      string `env:"MONGO_LISTING_QUERY" envDefault:""`
}

type Nats

type Nats struct {
	Url     string   `env:"NATS_URL" envDefault:"nats://localhost:4222"`
	Streams []string `env:"NATS_STREAMS" envDefault:""`
}

type RSA

type RSA struct {
	PrivateKeyFile string `env:"RSA_PRIVATE_KEY"`
	PublicKeyFile  string `env:"RSA_PUBLIC_KEY"`
}

type Redis

type Redis struct {
	Host string `env:"REDIS_HOST"`
	Port string `env:"REDIS_PORT"`
	Pw   string `env:"REDIS_PASSWORD"`
	Db   int    `env:"REDIS_DB"`
}

type Session

type Session struct {
	Topic string `env:"SESSION_TOPIC"`
}

type TokenSrv

type TokenSrv struct {
	Expiration int    `env:"TOKEN_EXPIRATION" envDefault:"3600"`
	Project    string `env:"TOKEN_PROJECT" envDefault:"empty"`
}

type Topics

type Topics struct {
	Listing  ListingTopics
	Category CategoryTopics
	Booking  BookingTopics
}

Jump to

Keyboard shortcuts

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