2023-05-18 17:40:52 +01:00
|
|
|
import { versionData } from '../../../version/git-version';
|
|
|
|
|
import { Environment } from './../../app/models/envarioment';
|
2023-01-25 15:06:19 +01:00
|
|
|
|
|
|
|
|
export const doneITProd: Environment = {
|
|
|
|
|
id:'1',
|
2023-11-14 12:04:31 +01:00
|
|
|
apiURL: 'https://gdapi-dev.dyndns.info/api/',
|
|
|
|
|
apiChatUrl: 'https://gdchat-dev.dyndns.info/api/v1/',
|
|
|
|
|
apiWsChatUrl: 'wss://gdchat-dev.dyndns.info/websocket',
|
|
|
|
|
apiPCURL: 'https://gdcmapi-dev.dyndns.info/api/',
|
|
|
|
|
/* apiURL: 'https://API.DONEIT.CO.AO/api/',
|
2023-01-25 15:06:19 +01:00
|
|
|
apiChatUrl: 'https://CHAT.DONEIT.CO.AO/api/v1/',
|
|
|
|
|
apiWsChatUrl: 'wss://CHAT.DONEIT.CO.AO/websocket',
|
2023-11-14 12:04:31 +01:00
|
|
|
apiPCURL: 'http://192.168.0.21:9099/api/', */
|
2023-01-25 15:06:19 +01:00
|
|
|
production: true,
|
2023-11-14 12:04:31 +01:00
|
|
|
domain: 'gabinetedigital.local',
|
2023-01-25 15:06:19 +01:00
|
|
|
defaultuser: '',
|
|
|
|
|
defaultuserpwd: '',
|
|
|
|
|
chatOffline: true,
|
2023-03-30 14:31:58 +01:00
|
|
|
presidential: false,
|
2023-01-25 15:06:19 +01:00
|
|
|
version: versionData,
|
|
|
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
|
|
|
|
logoLabel: 'doneIT',
|
2023-03-20 08:58:45 +01:00
|
|
|
despachoLabel: 'do Titular',
|
2023-02-03 14:40:09 +01:00
|
|
|
despachoLabel2: 'Despachos do Titular',
|
2023-03-22 15:31:01 +01:00
|
|
|
agendaPR: 'Agenda do Titular',
|
|
|
|
|
agendaVP: 'Agenda do (MD)',
|
|
|
|
|
PR: 'Titular',
|
|
|
|
|
VP: '',
|
|
|
|
|
dispatchPR: 'Despachos Titular',
|
2023-10-20 17:05:39 +01:00
|
|
|
storageProduction: true,
|
|
|
|
|
rejectUnauthorized: "true"
|
2023-01-25 15:06:19 +01:00
|
|
|
};
|
2023-06-07 14:43:14 +01:00
|
|
|
|
2023-01-25 15:06:19 +01:00
|
|
|
export const doneITDev: Environment = {
|
|
|
|
|
id:'1',
|
2023-11-14 12:04:31 +01:00
|
|
|
apiURL: 'https://gdapi-dev.dyndns.info/api/',
|
|
|
|
|
apiChatUrl: 'https://gdchat-dev.dyndns.info/api/v1/',
|
|
|
|
|
apiWsChatUrl: 'wss://gdchat-dev.dyndns.info/websocket',
|
|
|
|
|
apiPCURL: 'https://gdcmapi-dev.dyndns.info/api/',
|
|
|
|
|
/* apiURL: 'https://API.DONEIT.CO.AO/api/',
|
2023-01-25 15:06:19 +01:00
|
|
|
apiChatUrl: 'https://CHAT.DONEIT.CO.AO/api/v1/',
|
|
|
|
|
apiWsChatUrl: 'wss://CHAT.DONEIT.CO.AO/websocket',
|
2023-11-14 12:04:31 +01:00
|
|
|
apiPCURL: 'http://192.168.0.21:9099/api/', */
|
2023-01-25 15:06:19 +01:00
|
|
|
production: true,
|
2023-11-14 12:04:31 +01:00
|
|
|
domain: 'gabinetedigital.local',
|
|
|
|
|
defaultuser: '',
|
|
|
|
|
defaultuserpwd: '',
|
2023-01-25 15:06:19 +01:00
|
|
|
chatOffline: true,
|
2023-03-30 14:31:58 +01:00
|
|
|
presidential: false,
|
2023-01-25 15:06:19 +01:00
|
|
|
version: versionData,
|
|
|
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
|
|
|
|
logoLabel: 'doneIT',
|
2023-03-20 08:58:45 +01:00
|
|
|
despachoLabel: 'do Titular',
|
2023-02-03 14:40:09 +01:00
|
|
|
despachoLabel2: 'Despachos do Titular',
|
2023-03-22 15:31:01 +01:00
|
|
|
agendaPR: 'Agenda do Titular',
|
|
|
|
|
agendaVP: 'Agenda do (MD)',
|
|
|
|
|
PR: 'Titular',
|
|
|
|
|
VP: '',
|
|
|
|
|
dispatchPR: 'Despachos Titular',
|
2023-10-20 17:05:39 +01:00
|
|
|
storageProduction: false,
|
|
|
|
|
rejectUnauthorized: "true"
|
2023-01-25 15:06:19 +01:00
|
|
|
};
|