summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index bc8e75a..b887981 100644
--- a/main.go
+++ b/main.go
@@ -7,6 +7,7 @@ import (
"os"
"os/signal"
"syscall"
+ "path/filepath"
"xengineering.eu/ceres/model"
"xengineering.eu/ceres/view"
@@ -33,7 +34,7 @@ func main() {
}
log.Printf("Storage directory: %s\n", storage.Path)
- model.InitDatabase(config.StorageFilePath)
+ model.InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
defer model.CloseDatabase()
model.InjectTestRecipes()