refactor(server): telemetry ports env (#13560)

This commit is contained in:
Jason Rasmussen
2024-10-17 17:00:22 -04:00
committed by GitHub
parent 0eabb3ef80
commit c8f672f494
6 changed files with 80 additions and 18 deletions

View File

@@ -29,6 +29,11 @@ export interface EnvData {
thirdPartySupportUrl?: string;
};
bull: {
config: QueueOptions;
queues: RegisterQueueOptions[];
};
database: {
url?: string;
host: string;
@@ -45,6 +50,10 @@ export interface EnvData {
server: string;
};
network: {
trustedProxies: string[];
};
resourcePaths: {
lockFile: string;
geodata: {
@@ -62,9 +71,9 @@ export interface EnvData {
redis: RedisOptions;
bull: {
config: QueueOptions;
queues: RegisterQueueOptions[];
telemetry: {
apiPort: number;
microservicesPort: number;
};
storage: {