diff options
author | xengineering <me@xengineering.eu> | 2023-04-01 21:18:29 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-02 21:52:10 +0200 |
commit | bae6e34c9119750b2cba2a2ce6d88e9f8c895900 (patch) | |
tree | c171db86da17301c1fec735e1f10f4e9d91f1b41 /config | |
parent | 996725cb4735e1026bb3409d52b5a61bc8274fd2 (diff) | |
download | ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar.zst ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.zip |
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.
Diffstat (limited to 'config')
-rw-r--r-- | config/debug.json | 5 | ||||
-rw-r--r-- | config/default.json | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/config/debug.json b/config/debug.json index b3f5cbd..8333e1e 100644 --- a/config/debug.json +++ b/config/debug.json @@ -4,10 +4,5 @@ "bind_port":"8080", "static":"./data/static", "templates":"./data/templates" - }, - "database":{ - "socket":"/run/mysqld/mysqld.sock", - "database":"ceres", - "migrations":"./sql" } } diff --git a/config/default.json b/config/default.json index 33ff4a4..0fbcf09 100644 --- a/config/default.json +++ b/config/default.json @@ -4,10 +4,5 @@ "bind_port":"8080", "static":"/usr/share/ceres/static", "templates":"/usr/share/ceres/templates" - }, - "database":{ - "socket":"/run/mysqld/mysqld.sock", - "database":"ceres", - "migrations":"/usr/share/ceres/migrations" } } |