burlesque/config.go

32 lines
758 B
Go
Raw Normal View History

2014-07-10 19:19:39 +07:00
package main
import (
"flag"
)
const (
2014-07-17 01:57:54 +07:00
// With compression: burlesque.kch#opts=c#zcomp=gz#msiz=524288000
2014-07-17 00:42:21 +07:00
DefaultProductionStorage = "burlesque.kch#msiz=524288000"
)
2014-07-16 02:46:22 +07:00
var (
2014-07-10 19:19:39 +07:00
Config struct {
Storage string
Env string
Port int
2014-07-12 17:39:00 +07:00
Rollbar string
2014-07-10 19:19:39 +07:00
}
)
func SetupConfig() {
2014-07-17 00:42:21 +07:00
flag.StringVar(&Config.Storage, "storage", "-", "Kyoto Cabinet storage path (e.g. "+DefaultProductionStorage+")")
flag.StringVar(&Config.Env, "environment", "development", "Process environment: development or production")
flag.IntVar(&Config.Port, "port", 4401, "Server HTTP port")
flag.StringVar(&Config.Rollbar, "rollbar", "", "Rollbar token")
2014-07-10 19:19:39 +07:00
flag.Parse()
2014-07-16 02:46:22 +07:00
if Config.Env == "production" && Config.Storage == "-" {
Config.Storage = DefaultProductionStorage
}
2014-07-10 19:19:39 +07:00
}