@candlerip/shared3 0.0.28 → 0.0.30
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -5,9 +5,9 @@ export interface EnvironmentVariables {
|
|
5
5
|
DICTIONARY_SERVICE_PORT: number;
|
6
6
|
DOMAIN_NAME: string;
|
7
7
|
FRONTEND_URL: string;
|
8
|
-
LOGGER_SERVICE_PORT:
|
8
|
+
LOGGER_SERVICE_PORT: number;
|
9
9
|
RABBITMQ_PORT: number;
|
10
|
-
|
10
|
+
RABBITMQ_MANAGEMENT_PORT: number;
|
11
11
|
REDIS_PORT: number;
|
12
12
|
REDIS_PWD: string;
|
13
13
|
REDIS_URL: string;
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { EnvironmentVariables } from '../../../../environment/index.js';
|
2
|
-
export type BackendProjectConfig = Pick<EnvironmentVariables, 'CACHE_SERVICE_PORT' | 'LOGGER_SERVICE_PORT' | 'REDIS_PORT'>;
|
2
|
+
export type BackendProjectConfig = Pick<EnvironmentVariables, 'CACHE_SERVICE_PORT' | 'LOGGER_SERVICE_PORT' | 'RABBITMQ_PORT' | 'RABBITMQ_MANAGEMENT_PORT' | 'REDIS_PORT'>;
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { EnvironmentVariables } from '../../../../environment/index.js';
|
2
|
-
export type RabbitmqProjectConfig = Pick<EnvironmentVariables, 'RABBITMQ_PORT' | '
|
2
|
+
export type RabbitmqProjectConfig = Pick<EnvironmentVariables, 'RABBITMQ_PORT' | 'RABBITMQ_MANAGEMENT_PORT'>;
|