summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/main.go b/main.go
index 11cbf7c..28e6554 100644
--- a/main.go
+++ b/main.go
@@ -8,16 +8,8 @@ import (
var config RuntimeConfig
func main() {
-
- // read all sources of runtime configuration (e.g. CLI flags and config file)
config = GetRuntimeConfig()
-
- // print start message
log.Printf("Starting ceres with config file '%s'\n", config.Path)
-
- // initialize database
db := InitDatabase(config.Database)
-
- // start web server
runServer(config.Http, &db)
}