Clean successor to V3 (forge: lilith/atlilith). Seeded from local Mac working tree at ~/Code/@projects/@cocottetech/. node_modules and build artifacts excluded via .gitignore. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
456 B
TypeScript
18 lines
456 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
|
|
import { CacheInvalidateModule } from './cache-invalidate/cache-invalidate.module.js';
|
|
import { HealthModule } from './health/health.module.js';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
cache: true,
|
|
envFilePath: ['.env.local', '.env'],
|
|
}),
|
|
CacheInvalidateModule,
|
|
HealthModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|