Commit 73e25c8c by Billy Larru

asignando ip y puerto(no localhost)

parent bdd7f2f9
//DEVELOP //DEVELOP
const PATH_GENERAL = 'http://localhost:7070/Asistencia/'; const IP = '172.16.2.102';
const PATH_IP = 'http://172.16.2.102:7070/Asistencia/'; const PORT = '7070';
const PATH_GENERAL = `http://${IP}:${PORT}/Asistencia/`;
const PATH_IP = `http://${IP}:${PORT}/Asistencia/`;
//PRODUCCION //PRODUCCION
const PATH_DOMAIN = ''; const PATH_DOMAIN = '';
const CODIGO_PROYECTO = '7'; const CODIGO_PROYECTO = '7';
...@@ -9,7 +11,7 @@ const PATH_SERVICIO_REST = 'http://app9.sacooliveros.edu.pe:8080/security-rest/a ...@@ -9,7 +11,7 @@ const PATH_SERVICIO_REST = 'http://app9.sacooliveros.edu.pe:8080/security-rest/a
//<editor-fold> SERVICIOS REST //<editor-fold> SERVICIOS REST
const baseURLRest = 'http://sistem16:666/'; const baseURLRest = 'http://sistem16:666/';
const baseURLModals = `http://172.16.2.102:7070/Asistencia/vistas/modals/`; const baseURLModals = `http://${IP}:${PORT}/Asistencia/vistas/modals/`;
const baseURLImages = '' const baseURLImages = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment