about summary refs log tree commit diff stats
path: root/import
diff options
context:
space:
mode:
Diffstat (limited to 'import')
-rw-r--r--import/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/import/main.go b/import/main.go
index 90f2b74..db899e2 100644
--- a/import/main.go
+++ b/import/main.go
@@ -22,6 +22,7 @@ type Config struct {
 	LogLevel   slog.Level    `conf:"default:INFO"`
 	Timeout    time.Duration `conf:"default:30m,help:maximum time to wait for all fetchers and importers combined"`
 	Replace    bool          `conf:"default:false,help:whether to remove existing database, if exists"`
+	IndexPath  string        `conf:"default:data/index.bleve"`
 }
 
 func main() {
@@ -50,7 +51,7 @@ func main() {
 		return
 	}
 
-	indexer, err := search.NewIndexer(cfg.DataPath, runtimeConfig.Replace)
+	indexer, err := search.NewIndexer(runtimeConfig.IndexPath, runtimeConfig.Replace)
 	if err != nil {
 		log.Fatalf("Failed to create indexer: %v", err)
 	}