Files
marketplaces/src/environments/environment.ts

33 lines
1006 B
TypeScript
Raw Normal View History

2026-07-05 00:51:29 +04:00
// Marketplace Configuration
2026-01-18 18:57:06 +04:00
export const environment = {
production: false,
2026-03-24 00:09:11 +04:00
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'
},
2026-07-05 00:51:29 +04:00
brandName: 'Marketplace',
brandFullName: 'Marketplace',
2026-01-18 18:57:06 +04:00
theme: 'dexar',
2026-03-24 00:09:11 +04:00
apiUrl: '/api',
2026-07-20 01:02:36 +04:00
authApiUrl: 'https://api.dexarmarket.ru:445',
2026-06-05 18:23:24 +04:00
qrApiUrl: 'https://qr.vitanova.network/api',
2026-07-05 00:51:29 +04:00
logo: '/icons/icon-192x192.png',
2026-01-18 18:57:06 +04:00
contactEmail: 'info@dexarmarket.ru',
supportEmail: 'info@dexarmarket.ru',
domain: 'dexarmarket.ru',
telegram: '@dexarmarket',
2026-06-01 00:47:26 +04:00
telegramBot: 'myAMLKYCBOT',
2026-01-18 18:57:06 +04:00
phones: {
russia: '+7 (926) 459-31-57',
2026-04-14 22:28:34 +04:00
armenia: '+374 94 86 18 16',
support: '+7 (926) 459-31-57'
},
phoneTel: 'tel:+79264593157'
2026-01-18 18:57:06 +04:00
};