feature/IO-3096-GlobalNotifications - Checkpoint, fixed some email bugs in other files, consolidated the GetEndpoints on the backend, moved the consolidation delays for queues to ENV vars
This commit is contained in:
@@ -58,4 +58,20 @@ exports.InstanceRegion = () =>
|
||||
rome: "us-east-2"
|
||||
});
|
||||
|
||||
exports.InstanceEndpoints = () =>
|
||||
InstanceManager({
|
||||
imex:
|
||||
process.env?.NODE_ENV === "development"
|
||||
? "https://localhost:3000"
|
||||
: process.env?.NODE_ENV === "test"
|
||||
? "https://test.imex.online"
|
||||
: "https://imex.online",
|
||||
rome:
|
||||
process.env?.NODE_ENV === "development"
|
||||
? "https://localhost:3000"
|
||||
: process.env?.NODE_ENV === "test"
|
||||
? "https://test.romeonline.io"
|
||||
: "https://romeonline.io"
|
||||
});
|
||||
|
||||
exports.default = InstanceManager;
|
||||
|
||||
Reference in New Issue
Block a user