We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2875d3b commit b9a3521Copy full SHA for b9a3521
1 file changed
backend/cmd/api/main.go
@@ -84,6 +84,12 @@ func main() {
84
os.Exit(1)
85
}
86
87
+ // --- Initialize Meilisearch Indexes
88
+ if err := meiliClient.Initialize(context.Background()); err != nil {
89
+ slog.Error("failed to initialize meilisearch indexes", "error", err)
90
+ os.Exit(1)
91
+ }
92
+
93
// --- Data Repository (for indexing) ---
94
movementDataRepo := postgres.NewMovementIndexingRepository(db)
95
userDataRepo := postgres.NewUserIndexingRepository(db)
0 commit comments