dad0136365
Build and Push Multi-Platform Images / build-and-push (push) Successful in 41s
Reformats code style (line breaks, indentation, type annotations) without changing logic. Also includes minor feature additions bundled in the same lint run (stats service, user-settings groups, agrarmonitor polling improvements). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
2.2 KiB
TypeScript
59 lines
2.2 KiB
TypeScript
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 { UserSettingsModule } from './user-settings/user-settings.module';
|
|
import { LabelPrintAgentModule } from './label-print-agent/label-print-agent.module';
|
|
import { AgrarmonitorModule } from './agrarmonitor/agrarmonitor.module';
|
|
import { FreigabeModule } from './freigabe/freigabe.module';
|
|
import { DailyDigestModule } from './daily-digest/daily-digest.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,
|
|
UserSettingsModule,
|
|
LabelPrintAgentModule,
|
|
AgrarmonitorModule,
|
|
FreigabeModule,
|
|
DailyDigestModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|