summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go27
1 files changed, 27 insertions, 0 deletions
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)
+}