26 lines
364 B
Go
26 lines
364 B
Go
package config
|
|
|
|
const ServiceName = "service_name"
|
|
|
|
const Local = "Local"
|
|
|
|
const (
|
|
Yes = "yes"
|
|
No = "no"
|
|
)
|
|
|
|
const DefaultConfigPath = "./pack"
|
|
const DefaultConfigSuffix = ".yaml"
|
|
|
|
const (
|
|
STAGE = "STAGE"
|
|
|
|
StageLocal = "local"
|
|
StageDevelop = "develop"
|
|
StageTest = "test"
|
|
StageRelease = "release"
|
|
StageProduct = "product"
|
|
|
|
DefaultStage = StageLocal
|
|
)
|