summaryrefslogtreecommitdiff
path: root/main.go
blob: 957193534f8897b810a11528e180ef8fc62598e4 (plain)
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

package main

import (
	"log"

	"xengineering.eu/ceres/utils"
	"xengineering.eu/ceres/web"
)

func main() {

	// disable log timestamp because systemd takes care of that
	log.SetFlags(0)

	// read all sources of runtime configuration (e.g. CLI flags and config file)
	config := utils.GetRuntimeConfig()

	// print start message
	log.Printf("Starting ceres with config file '%s'\n", config.Path)

	// initialize database
	db := utils.InitDatabase(config.Database)

	// start web server
	web.RunServer(config.Http, &db)
}