33 lines
1006 B
TypeScript
33 lines
1006 B
TypeScript
// Marketplace Configuration
|
|
export const environment = {
|
|
production: false,
|
|
useMockData: false, // Toggle to test with backOffice mock data
|
|
useMockBootstrapOnLocal: true,
|
|
fallbackTenantKey: 'default',
|
|
allowBootstrapApiOverride: false,
|
|
localhostApiUrl: '/api',
|
|
tenantApiTemplate: 'https://{tenant}.api.dexarmarket.ru:445',
|
|
tenantApiBaseUrls: {
|
|
default: 'https://api.dexarmarket.ru:445',
|
|
dexarmarket: 'https://api.dexarmarket.ru:445'
|
|
},
|
|
brandName: 'Marketplace',
|
|
brandFullName: 'Marketplace',
|
|
theme: 'dexar',
|
|
apiUrl: '/api',
|
|
authApiUrl: 'https://api.dexarmarket.ru:445',
|
|
qrApiUrl: 'https://qr.vitanova.network/api',
|
|
logo: '/icons/icon-192x192.png',
|
|
contactEmail: 'info@dexarmarket.ru',
|
|
supportEmail: 'info@dexarmarket.ru',
|
|
domain: 'dexarmarket.ru',
|
|
telegram: '@dexarmarket',
|
|
telegramBot: 'myAMLKYCBOT',
|
|
phones: {
|
|
russia: '+7 (926) 459-31-57',
|
|
armenia: '+374 94 86 18 16',
|
|
support: '+7 (926) 459-31-57'
|
|
},
|
|
phoneTel: 'tel:+79264593157'
|
|
};
|