diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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() |