diff options
author | xengineering <me@xengineering.eu> | 2022-11-05 21:25:31 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-11-07 21:17:44 +0100 |
commit | 1d6b45bebea66391a2a535a3bb328a5732aaa75d (patch) | |
tree | 12faa62d8d8574ad8c94f4a7c9ff206c34456430 /main.go | |
download | ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar.zst ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.zip |
Add existing work
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) +} |