Add contact, upgrade versions, add docs

This commit is contained in:
2024-10-15 17:29:35 -06:00
parent 2fff8e9887
commit d48040bd58
23 changed files with 2299 additions and 2151 deletions

View File

@@ -10,7 +10,6 @@ import { DomainrproxyModule } from './domainrproxy/domainrproxy.module';
import configuration from './config/configuration';
import { CacheInterceptor, CacheModule } from '@nestjs/cache-manager';
import { IrcbotModule } from './ircbot/ircbot.module';
import { OgScraperModule } from './ogscraper/ogscraper.module';
import { PrometheusModule } from '@willsoto/nestjs-prometheus';
import { MinioModule } from './minio/minio.module';
import { KvModule } from './kv/kv.module';
@@ -28,6 +27,8 @@ import { RedisModule, RedisModuleOptions } from '@liaoliaots/nestjs-redis';
import { AdsbExchangeModule } from './adsb-exchange/adsb-exchange.module';
import { APP_INTERCEPTOR } from '@nestjs/core';
import { JunkDrawerModule } from './junk-drawer/junk-drawer.module';
import { EmailModule } from './email/email.module';
import { ContactModule } from './contact/contact.module';
@Module({
imports: [
@@ -91,7 +92,6 @@ import { JunkDrawerModule } from './junk-drawer/junk-drawer.module';
UsersModule,
DomainrproxyModule,
IrcbotModule,
OgScraperModule,
MinioModule,
KvModule,
RedirectsModule,
@@ -102,6 +102,8 @@ import { JunkDrawerModule } from './junk-drawer/junk-drawer.module';
JobsModule,
AdsbExchangeModule,
JunkDrawerModule,
EmailModule,
ContactModule,
],
controllers: [AppController],
providers: [
@@ -111,5 +113,6 @@ import { JunkDrawerModule } from './junk-drawer/junk-drawer.module';
useClass: CacheInterceptor,
},
],
exports: [PrometheusModule],
})
export class AppModule {}