1
0
Fork 0

Make production default environment

This commit is contained in:
Gregory Eremin 2014-07-29 13:26:00 +07:00
parent 44ad6bc802
commit 37aacf973b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ var (
func SetupConfig() {
flag.StringVar(&Config.Storage, "storage", "-", "Kyoto Cabinet storage path (e.g. "+DefaultProductionStorage+")")
flag.StringVar(&Config.Env, "environment", "development", "Process environment: development or production")
flag.StringVar(&Config.Env, "environment", "production", "Process environment: production or development")
flag.IntVar(&Config.Port, "port", 4401, "Server HTTP port")
flag.Parse()