From 944f671d9696350d50dc29f97b7dec769352037e Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Fri, 1 Mar 2024 14:36:26 +0100 Subject: [PATCH] default db location --- backend/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config/config.go b/backend/config/config.go index f5f175a5..7b826c58 100644 --- a/backend/config/config.go +++ b/backend/config/config.go @@ -59,7 +59,7 @@ func GetBinFolderPath() string { func GetDBFolderPath() string { dbFolderPath := os.Getenv("SUI_DB_FOLDER") if dbFolderPath == "" { - dbFolderPath = "db" + dbFolderPath = "/usr/local/s-ui/db" } return dbFolderPath }