From 1d6b45bebea66391a2a535a3bb328a5732aaa75d Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 5 Nov 2022 21:25:31 +0100 Subject: Add existing work --- main.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 main.go (limited to 'main.go') diff --git a/main.go b/main.go new file mode 100644 index 0000000..9571935 --- /dev/null +++ b/main.go @@ -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) +} -- cgit v1.2.3-70-g09d2