mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 15:39:40 +02:00
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>
32 lines
968 B
TypeScript
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 {}
|