Feature: Added Code generation based on swagger.json #4

Merged
igorpropisnov merged 6 commits from feature/generate-api-client into main 2024-05-22 15:48:01 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 28cac3ba32 - Show all commits

View File

@ -9,7 +9,7 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_NAME}
ports:
- "${DB_PORT}:5432"
- "${DB_PORT}:${DB_PORT}"
pgadmin:
container_name: pgadmin4_container
image: dpage/pgadmin4

View File

@ -24,7 +24,7 @@ import { CorsMiddleware } from './middleware/cors-middleware/cors.middlware';
export class AppModule {
configure(consumer: MiddlewareConsumer) {
consumer
// TODO: Redirect via Reverse Proxy all HTTP requests to HTTPS
// TODO Redirect via Reverse Proxy all HTTP requests to HTTPS
.apply(
CspMiddleware,
SecurityHeadersMiddleware,