default: {
firebase: { get credentialsPath(): string };
jwt: {
get expires(): string;
get refreshExpires(): string;
get secret(): string;
};
messaging: { get notificationsQueue(): string; get rabbitMQURL(): string };
smtp: {
get from(): string;
get host(): string;
get pass(): string;
get port(): number;
get user(): string;
};
get uploadDir(): string;
} = ...
Type Declaration
firebase: { get credentialsPath(): string }
jwt: { get expires(): string; get refreshExpires(): string; get secret(): string }
messaging: { get notificationsQueue(): string; get rabbitMQURL(): string }
smtp: {
get from(): string;
get host(): string;
get pass(): string;
get port(): number;
get user(): string;
}
get uploadDir(): string
Centralized configuration object for server essentials. Loads environment variables using dotenv and provides defaults for various services.