diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,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) +} |