-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.go
63 lines (49 loc) · 1.44 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package main
import (
"os"
log "github.com/Sirupsen/logrus"
"github.com/voxelbrain/goptions"
"github.com/yosmudge/slackmood/collector"
"github.com/yosmudge/slackmood/config"
"github.com/yosmudge/slackmood/models"
"github.com/yosmudge/slackmood/web"
)
type options struct {
Verbose bool `goptions:"-v, --verbose, description='Log verbosely'"`
Help goptions.Help `goptions:"-h, --help, description='Show help'"`
Config string `goptions:"-c, --config, description='Config Yaml file to use'"`
Bind string `goptions:"-b, --bind, description='Port/Address to bind on, can also be specified with WEB_BIND environment variable'"`
goptions.Verbs
}
func main() {
parsedOptions := options{}
parsedOptions.Config = "./config.yml"
parsedOptions.Bind = os.Getenv("WEB_BIND")
goptions.ParseAndFail(&parsedOptions)
if parsedOptions.Verbose {
log.SetLevel(log.DebugLevel)
} else {
log.SetLevel(log.InfoLevel)
}
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
log.Debug("Logging verbosely!")
err := config.LoadConfig(parsedOptions.Config)
if err != nil {
log.WithFields(log.Fields{
"configFile": parsedOptions.Config,
"error": err,
}).Error("Could not load config file")
os.Exit(1)
}
err = models.OpenDB()
if err != nil {
log.WithFields(log.Fields{
"error": err,
}).Error("Could not open database")
return
}
if !collector.Start() {
os.Exit(1)
}
web.Start(parsedOptions.Bind)
}