From 1701563e2a0b07034dfcba2a00d21f52efea4ece Mon Sep 17 00:00:00 2001
From: Berend Sliedrecht <berend@animo.id>
Date: Wed, 29 Nov 2023 11:09:06 +0100
Subject: [PATCH] fix: resolved minor feedback points

Signed-off-by: Berend Sliedrecht <berend@animo.id>
---
 apps/credential-manager/src/main.ts |  9 +--------
 apps/schema-manager/src/main.ts     |  9 +--------
 apps/shared/nest-cli.json           | 11 ++++++++++-
 apps/ssi-abstraction/nest-cli.json  | 11 ++++++++++-
 compose/docker-compose.yml          | 14 --------------
 5 files changed, 22 insertions(+), 32 deletions(-)

diff --git a/apps/credential-manager/src/main.ts b/apps/credential-manager/src/main.ts
index 746af79..4936407 100644
--- a/apps/credential-manager/src/main.ts
+++ b/apps/credential-manager/src/main.ts
@@ -7,8 +7,6 @@ import { Transport } from '@nestjs/microservices';
 import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
 
 import AppModule from './app.module.js';
-// import AllExceptionsFilter from './utils/exceptionsFilter.js';
-// import logger from './utils/logger.js';
 
 const app = await NestFactory.create(AppModule);
 const configService = app.get(ConfigService);
@@ -37,9 +35,4 @@ const document = SwaggerModule.createDocument(app, swaggerConfig);
 SwaggerModule.setup('/swagger', app, document);
 await app.startAllMicroservices();
 
-// const httpAdapter = app.get(HttpAdapterHost);
-// app.useGlobalFilters(new AllExceptionsFilter(httpAdapter));
-
-await app.listen(configService.get('PORT') || 3000, () => {
-  // logger.info(`Listening on Port:${configService.get('PORT')}` || 3000);
-});
+await app.listen(configService.get('PORT') || 3000);
diff --git a/apps/schema-manager/src/main.ts b/apps/schema-manager/src/main.ts
index 746af79..4936407 100644
--- a/apps/schema-manager/src/main.ts
+++ b/apps/schema-manager/src/main.ts
@@ -7,8 +7,6 @@ import { Transport } from '@nestjs/microservices';
 import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
 
 import AppModule from './app.module.js';
-// import AllExceptionsFilter from './utils/exceptionsFilter.js';
-// import logger from './utils/logger.js';
 
 const app = await NestFactory.create(AppModule);
 const configService = app.get(ConfigService);
@@ -37,9 +35,4 @@ const document = SwaggerModule.createDocument(app, swaggerConfig);
 SwaggerModule.setup('/swagger', app, document);
 await app.startAllMicroservices();
 
-// const httpAdapter = app.get(HttpAdapterHost);
-// app.useGlobalFilters(new AllExceptionsFilter(httpAdapter));
-
-await app.listen(configService.get('PORT') || 3000, () => {
-  // logger.info(`Listening on Port:${configService.get('PORT')}` || 3000);
-});
+await app.listen(configService.get('PORT') || 3000);
diff --git a/apps/shared/nest-cli.json b/apps/shared/nest-cli.json
index 2566481..b9af737 100644
--- a/apps/shared/nest-cli.json
+++ b/apps/shared/nest-cli.json
@@ -1,5 +1,14 @@
 {
   "$schema": "https://json.schemastore.org/nest-cli",
   "collection": "@nestjs/schematics",
-  "sourceRoot": "src"
+  "sourceRoot": "src",
+  "compilerOptions": {
+    "typeCheck": true,
+    "builder": {
+      "type": "swc",
+      "options": {
+        "swcrcPath": "../../.swcrc"
+      }
+    }
+  }
 }
diff --git a/apps/ssi-abstraction/nest-cli.json b/apps/ssi-abstraction/nest-cli.json
index 2566481..b9af737 100644
--- a/apps/ssi-abstraction/nest-cli.json
+++ b/apps/ssi-abstraction/nest-cli.json
@@ -1,5 +1,14 @@
 {
   "$schema": "https://json.schemastore.org/nest-cli",
   "collection": "@nestjs/schematics",
-  "sourceRoot": "src"
+  "sourceRoot": "src",
+  "compilerOptions": {
+    "typeCheck": true,
+    "builder": {
+      "type": "swc",
+      "options": {
+        "swcrcPath": "../../.swcrc"
+      }
+    }
+  }
 }
diff --git a/compose/docker-compose.yml b/compose/docker-compose.yml
index de94665..fc6c17a 100644
--- a/compose/docker-compose.yml
+++ b/compose/docker-compose.yml
@@ -15,20 +15,6 @@ services:
       - nats
       - ssi
 
-  # attestation-manager:
-  #   build:
-  #     context: ..
-  #     args:
-  #       - SERVICE=attestation-manager
-  #   init: true
-  #   ports:
-  #     - '3005:3005'
-  #   env_file: ./env/attestation-manager.env
-  #   depends_on:
-  #     - db
-  #     - nats
-  #     - ssi
-
   credential-manager:
     build:
       context: ..
-- 
GitLab