managarten/apps-archived/inventory/apps/backend/src/app.module.ts
Till-JS 44897ae758 chore: archive inventory, presi, storage apps
Move these apps to apps-archived/ as they are not actively developed:
- inventory: Inventory management app
- presi: Presentation tool
- storage: Cloud storage app

These can be reactivated by moving back to apps/ when needed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 15:22:38 +01:00

32 lines
968 B
TypeScript

import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { DatabaseModule } from './db/database.module';
import { StorageModule } from './storage/storage.module';
import { HealthModule } from './health/health.module';
import { ItemModule } from './item/item.module';
import { CategoryModule } from './category/category.module';
import { LocationModule } from './location/location.module';
import { PhotoModule } from './photo/photo.module';
import { DocumentModule } from './document/document.module';
import { ImportModule } from './import/import.module';
import { ExportModule } from './export/export.module';
@Module({
imports: [
ConfigModule.forRoot({
isGlobal: true,
envFilePath: ['.env', '.env.development'],
}),
DatabaseModule,
StorageModule,
HealthModule,
ItemModule,
CategoryModule,
LocationModule,
PhotoModule,
DocumentModule,
ImportModule,
ExportModule,
],
})
export class AppModule {}