Files
doneit-web/src/environments/suport/doneIt.ts
T

47 lines
1.5 KiB
TypeScript
Raw Normal View History

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',
apiURL: 'https://API.DONEIT.CO.AO/api/',
apiChatUrl: 'https://CHAT.DONEIT.CO.AO/api/v1/',
apiWsChatUrl: 'wss://CHAT.DONEIT.CO.AO/websocket',
production: true,
domain: 'equilibrium.co.ao',
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-01-25 15:06:19 +01:00
};
export const doneITDev: Environment = {
id:'1',
apiURL: 'https://API.DONEIT.CO.AO/api/',
apiChatUrl: 'https://CHAT.DONEIT.CO.AO/api/v1/',
apiWsChatUrl: 'wss://CHAT.DONEIT.CO.AO/websocket',
production: true,
domain: 'equilibrium.co.ao',
defaultuser: 'evandre.dasilva@equilibrium.co.ao',
2023-06-05 10:14:48 +01:00
defaultuserpwd: 'Luand@1114',
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-01-25 15:06:19 +01:00
};