mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 17:09: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>
24 lines
626 B
TypeScript
24 lines
626 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule } from '@nestjs/config';
|
|
import { DatabaseModule } from './db/database.module';
|
|
import { DeckModule } from './deck/deck.module';
|
|
import { SlideModule } from './slide/slide.module';
|
|
import { ThemeModule } from './theme/theme.module';
|
|
import { ShareModule } from './share/share.module';
|
|
import { HealthModule } from './health/health.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
envFilePath: '.env',
|
|
}),
|
|
DatabaseModule,
|
|
DeckModule,
|
|
SlideModule,
|
|
ThemeModule,
|
|
ShareModule,
|
|
HealthModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|