From 0986e8699e87addccbef43c0ce30a466988fed15 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 9 May 2024 18:47:37 +0200 Subject: feat: enable index path to be configured --- import/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'import/main.go') 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) } -- cgit 1.4.1