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

55 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-01-25 15:06:19 +01:00
import { versionData } from '../../../version/git-version'
import { Environment } from './../../app/models/envarioment'
export const oaprProd: Environment = {
id: '0',
2023-10-19 16:51:12 +01:00
apiURL: 'https://gdqas-api.oapr.gov.ao/api/',
apiChatUrl: 'https://gdqas-chat.oapr.gov.ao/api/v1/',
apiWsChatUrl: 'wss://gdqas-chat.oapr.gov.ao/websocket',
2023-10-26 08:49:45 +01:00
apiPCURL: 'https://gdqas-cmapi.oapr.gov.ao/api/',
2023-01-25 15:06:19 +01:00
logoLabel: 'Presidente da República',
2023-06-12 08:20:48 +01:00
despachoLabel: 'Presidenciais',
2023-06-11 20:17:10 +01:00
despachoLabel2: 'Despachos Presidênciais',
2023-01-25 15:06:19 +01:00
production: false,
domain: 'oapr.gov.ao',
defaultuser: '',
defaultuserpwd: '',
chatOffline: true,
2023-03-30 14:31:58 +01:00
presidential: true,
2023-01-25 15:06:19 +01:00
version: versionData,
2023-03-22 15:31:01 +01:00
agendaPR: 'Agenda do PR',
agendaVP: 'Agenda do MD',
PR: 'PR',
VP: '',
2023-06-11 20:17:10 +01:00
dispatchPR: 'Despachos Presidênciais',
2023-07-10 12:32:01 +01:00
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
2023-10-20 17:05:39 +01:00
storageProduction: true,
rejectUnauthorized: "false"
2023-01-25 15:06:19 +01:00
};
export const oaprDev: Environment = {
id: '0',
2023-10-19 16:51:12 +01:00
apiURL: 'https://gdqas-api.oapr.gov.ao/api/',
apiChatUrl: 'https://gdqas-chat.oapr.gov.ao/api/v1/',
apiWsChatUrl: 'wss://gdqas-chat.oapr.gov.ao/websocket',
2023-10-26 08:49:45 +01:00
apiPCURL: 'https://gdqas-cmapi.oapr.gov.ao/api/',
2023-01-25 15:06:19 +01:00
logoLabel: 'Presidente da República',
2023-03-20 08:58:45 +01:00
despachoLabel: 'Presidencial',
2023-06-11 22:35:07 +01:00
despachoLabel2: 'Despachos Presidênciais',
2023-01-25 15:06:19 +01:00
production: false,
domain: 'oapr.gov.ao',
2023-07-03 12:04:52 +01:00
defaultuser: '',
defaultuserpwd: '',
2023-01-25 15:06:19 +01:00
chatOffline: true,
2023-03-30 14:31:58 +01:00
presidential: true,
2023-01-25 15:06:19 +01:00
version: versionData,
2023-03-22 15:31:01 +01:00
agendaPR: 'Agenda do PR',
agendaVP: 'Agenda do MD',
PR: 'PR',
VP: '',
2023-06-11 22:35:07 +01:00
dispatchPR: 'Despachos Presidênciais',
2023-01-25 15:06:19 +01:00
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
2023-10-20 17:05:39 +01:00
storageProduction: false,
rejectUnauthorized: "false"
2023-01-25 15:06:19 +01:00
};