package config import ( "context" "github.com/joho/godotenv" "github.com/sethvargo/go-envconfig" ) // Configuration represents the application configuration with the default values. type Configuration struct { Env string `env:"ENV,default=development"` LogLevel string `env:"LOG_LEVEL,default=INFO"` Port string `env:"PORT,default=8000"` ConsumerMode string `env:"CONSUMER_MODE,default=QUEUE"` AwsEndpoint string `env:"AWS_ENDPOINT"` AwsAccessKeyID string `env:"AWS_ACCESS_KEY_ID"` AwsSecretAccessKey string `env:"AWS_SECRET_ACCESS_KEY"` AwsRegion string `env:"AWS_REGION"` SQSUrl string `env:"SQS_URL"` InfluxUrl string `env:"INFLUX_URL"` InfluxToken string `env:"INFLUX_TOKEN"` InfluxOrganization string `env:"INFLUX_ORGANIZATION"` InfluxBucket string `env:"INFLUX_BUCKET"` PprofEnabled bool `env:"PPROF_ENABLED,default=false"` P2pNetwork string `env:"P2P_NETWORK,required"` CacheURL string `env:"CACHE_URL"` CacheChannel string `env:"CACHE_CHANNEL"` } // New creates a configuration with the values from .env file and environment variables. func New(ctx context.Context) (*Configuration, error) { _ = godotenv.Load(".env", "../.env") var configuration Configuration if err := envconfig.Process(ctx, &configuration); err != nil { return nil, err } return &configuration, nil } // IsQueueConsumer check if consumer mode is QUEUE. func (c *Configuration) IsQueueConsumer() bool { return c.ConsumerMode == "QUEUE" }