// 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}/`;