aenvs/internal/config/constants.go

28 lines
762 B
Go

package config
const (
// DefaultConfigDir is the directory for global config
DefaultConfigDir = ".config/aevs"
// DefaultGlobalConfigFile is the global config filename
DefaultGlobalConfigFile = "config.yaml"
// DefaultProjectConfigFile is the project config filename
DefaultProjectConfigFile = "aevs.yaml"
// DefaultStorageType is the default storage backend
DefaultStorageType = "s3"
// DefaultRegion is the default AWS region
DefaultRegion = "us-east-1"
// DefaultEndpoint is the default S3 endpoint
DefaultEndpoint = "https://s3.amazonaws.com"
// ArchiveFileName is the name of the archive in storage
ArchiveFileName = "envs.tar.gz"
// MetadataFileName is the name of the metadata file in storage
MetadataFileName = "metadata.json"
)