feat(api): add SearchModule with GET /search endpoint backed by Meilisearch

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 00:28:13 +05:30
parent 6f18433c67
commit 8ad5f737bd
8 changed files with 223 additions and 0 deletions
+2
View File
@@ -2,12 +2,14 @@ import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { PrismaModule } from './prisma/prisma.module';
import { HealthModule } from './modules/health/health.module';
import { SearchModule } from './modules/search/search.module';
@Module({
imports: [
ConfigModule.forRoot({ isGlobal: true }),
PrismaModule,
HealthModule,
SearchModule,
],
})
export class AppModule {}