mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
|
|
import { versionData } from '../../../version/git-version'
|
||
|
|
import { Environment } from './../../app/models/envarioment'
|
||
|
|
|
||
|
|
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,
|
||
|
|
presidencial: false,
|
||
|
|
version: versionData,
|
||
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
||
|
|
logoLabel: 'doneIT',
|
||
|
|
despachoLabel: 'Titular',
|
||
|
|
};
|
||
|
|
|
||
|
|
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',
|
||
|
|
defaultuserpwd: 'Luand@1219',
|
||
|
|
chatOffline: true,
|
||
|
|
presidencial: false,
|
||
|
|
version: versionData,
|
||
|
|
sentryUrl: 'https://9920cc36f1d740b987426ee8d80cf588@o4504340905525248.ingest.sentry.io/4504340946419712',
|
||
|
|
logoLabel: 'doneIT',
|
||
|
|
despachoLabel: 'Titular',
|
||
|
|
};
|