Initial commit with Email Import Wizard and Task Processor updates

This commit is contained in:
2026-05-04 08:02:11 +02:00
commit effdc5d59f
170 changed files with 67739 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { ScheduleModule } from '@nestjs/schedule';
import { DatabaseModule } from './database/database.module';
import { AuthModule } from './auth/auth.module';
import { ScannerModule } from './scanner/scanner.module';
import { PaperlessModule } from './paperless/paperless.module';
import { PreprocessingModule } from './preprocessing/preprocessing.module';
import { PostprocessingModule } from './postprocessing/postprocessing.module';
import { WebhookModule } from './webhook/webhook.module';
import { InboxModule } from './inbox/inbox.module';
import { EmailModule } from './email/email.module';
import { EmailDownloadModule } from './email-download/email-download.module';
import { SettingsModule } from './settings/settings.module';
import { KontonummernModule } from './kontonummern/kontonummern.module';
import { StatsModule } from './stats/stats.module';
import { BarcodeModule } from './barcode/barcode.module';
import { InboxPostprocessorModule } from './inbox-postprocessor/inbox-postprocessor.module';
import * as path from 'path';
@Module({
imports: [
ConfigModule.forRoot({
isGlobal: true,
envFilePath: [
path.resolve(__dirname, '../../.env'), // Root .env (zentral)
path.resolve(__dirname, '../.env'), // Lokale .env (Fallback)
],
}),
ScheduleModule.forRoot(),
DatabaseModule,
AuthModule,
ScannerModule,
PaperlessModule,
PreprocessingModule,
PostprocessingModule,
WebhookModule,
InboxModule,
EmailModule,
EmailDownloadModule,
SettingsModule,
KontonummernModule,
StatsModule,
BarcodeModule,
InboxPostprocessorModule,
],
})
export class AppModule {}