You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
576 B
26 lines
576 B
1 year ago
|
// AGW
|
||
|
|
||
|
export const AGW_PORT = 3000;
|
||
|
export const AGW_HOST = 'localhost';
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
// SERVICES
|
||
|
|
||
|
|
||
|
// Auth SERVICE
|
||
|
export const AUTH_SERVICE_PORT = 3411;
|
||
|
export const AUTH_SERVICE_HOST = 'localhost';
|
||
|
|
||
|
// User Data SERVICE
|
||
|
export const USER_DATA_SERVICE_PORT = 3412;
|
||
|
export const USER_DATA_SERVICE_HOST = 'localhost';
|
||
|
|
||
|
|
||
|
|
||
|
// SUPPORT SECTION
|
||
|
export const AGW_URL = `http://${AGW_HOST}:${AGW_PORT}/`;
|
||
|
export const AUTH_SERVICE_URL = `http://${AUTH_SERVICE_HOST}:${AUTH_SERVICE_PORT}/`;
|
||
|
export const USER_DATA_SERVICE_URL = `http://${USER_DATA_SERVICE_HOST}:${USER_DATA_SERVICE_PORT}/`;
|