mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import { versionData } from '../../../version/git-version'
|
|
import { Environment } from './../../app/models/envarioment'
|
|
|
|
|
|
export const oaprProd: Environment = {
|
|
id: '0',
|
|
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',
|
|
apiPCURL: 'https://gdqas-cmapi.oapr.gov.ao/api/',
|
|
logoLabel: 'Presidente da República',
|
|
despachoLabel: 'Presidenciais',
|
|
despachoLabel2: 'Despachos Presidênciais',
|
|
production: false,
|
|
domain: 'oapr.gov.ao',
|
|
defaultuser: '',
|
|
defaultuserpwd: '',
|
|
chatOffline: true,
|
|
presidential: true,
|
|
version: versionData,
|
|
agendaPR: 'Agenda do PR',
|
|
agendaVP: 'Agenda do MD',
|
|
PR: 'PR',
|
|
VP: '',
|
|
dispatchPR: 'Despachos Presidênciais',
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
|
storageProduction: true,
|
|
rejectUnauthorized: "false"
|
|
};
|
|
|
|
export const oaprDev: Environment = {
|
|
id: '0',
|
|
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',
|
|
apiPCURL: 'https://gdqas-cmapi.oapr.gov.ao/api/',
|
|
logoLabel: 'Presidente da República',
|
|
despachoLabel: 'Presidencial',
|
|
despachoLabel2: 'Despachos Presidênciais',
|
|
production: false,
|
|
domain: 'oapr.gov.ao',
|
|
defaultuser: '',
|
|
defaultuserpwd: '',
|
|
chatOffline: true,
|
|
presidential: true,
|
|
version: versionData,
|
|
agendaPR: 'Agenda do PR',
|
|
agendaVP: 'Agenda do MD',
|
|
PR: 'PR',
|
|
VP: '',
|
|
dispatchPR: 'Despachos Presidênciais',
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
|
storageProduction: false,
|
|
rejectUnauthorized: "false"
|
|
}; |