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. --- config.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'config.go') diff --git a/config.go b/config.go index 64b2bfb..46685d2 100644 --- a/config.go +++ b/config.go @@ -12,7 +12,6 @@ import ( type RuntimeConfig struct { Path string Http HttpConfig `json:"http"` - Database DatabaseConfig `json:"database"` } type HttpConfig struct { @@ -22,13 +21,6 @@ type HttpConfig struct { Templates string `json:"templates"` } -type DatabaseConfig struct { - Socket string `json:"socket"` - User string `json:"user"` - Database string `json:"database"` - Migrations string `json:"migrations"` -} - func GetRuntimeConfig() RuntimeConfig { config := RuntimeConfig{} -- cgit v1.2.3-70-g09d2