1
0
Fork 0
burlesque/config.go

31 lines
699 B
Go
Raw Normal View History

2014-07-10 12:19:39 +00:00
package main
import (
"flag"
)
const (
DefaultProductionStorage = "burlesque.kch#opts=c#zcomp=gz#msiz=524288000"
)
2014-07-15 19:46:22 +00:00
var (
2014-07-10 12:19:39 +00:00
Config struct {
Storage string
Env string
Port int
2014-07-12 10:39:00 +00:00
Rollbar string
2014-07-10 12:19:39 +00:00
}
)
func SetupConfig() {
2014-07-15 19:46:22 +00:00
Config.Storage = *flag.String("storage", "-", "Kyoto Cabinet storage path (e.g. "+DefaultProductionStorage+")")
Config.Env = *flag.String("environment", "development", "Process environment: development or production")
Config.Port = *flag.Int("port", 4401, "Server HTTP port")
Config.Rollbar = *flag.String("rollbar", "", "Rollbar token")
2014-07-10 12:19:39 +00:00
flag.Parse()
2014-07-15 19:46:22 +00:00
if Config.Env == "production" && Config.Storage == "-" {
Config.Storage = DefaultProductionStorage
}
2014-07-10 12:19:39 +00:00
}