From bae6e34c9119750b2cba2a2ce6d88e9f8c895900 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 1 Apr 2023 21:18:29 +0200 Subject: Switch from MariaDB to files Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler. --- main.go | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 483633c..3cf6fa7 100644 --- a/main.go +++ b/main.go @@ -1,35 +1,16 @@ package main import ( - "database/sql" "log" - "os" - "os/signal" - "syscall" "text/template" ) var config RuntimeConfig -var db *sql.DB var templates *template.Template func main() { log.Printf("Started Ceres recipe server.\n") config = GetRuntimeConfig() templates = setupTemplates() - db = setupDatabase() - provideShutdown() runServer() } - -func provideShutdown() { - var listener = make(chan os.Signal) - signal.Notify(listener, syscall.SIGTERM) - signal.Notify(listener, syscall.SIGINT) - go func() { - signal := <-listener - log.Printf("Got signal '%+v'. Shutdown is started.\n", signal) - dbCleanup(db) - os.Exit(0) - }() -} -- cgit v1.2.3-70-g09d2