* Detox/E2E: Migrate to typescript * Add jest.config.js * Add moduleMapper to config.json * Add cookie jar to axios client, fix tsconfig.json and default_config.json * Take keyboard into consideration; clean test for now for this migration PR * Revert changes on path_builder * Attempt to fix dep issues * Update detox dep * Added missing @type dev dependencies * Fix dep order * Fix unit tests * Added dynamic year to email.ts
15 lines
1.1 KiB
TypeScript
15 lines
1.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const serverOneUrl = process.env.SITE_1_URL || (process.env.IOS ? 'http://127.0.0.1:8065' : 'http://10.0.2.2:8065');
|
|
export const siteOneUrl = process.env.SITE_1_URL || 'http://127.0.0.1:8065';
|
|
export const serverTwoUrl = process.env.SITE_2_URL || 'https://bitrise02.test.mattermost.cloud';
|
|
export const siteTwoUrl = process.env.SITE_2_URL || 'https://bitrise02.test.mattermost.cloud';
|
|
export const serverThreeUrl = process.env.SITE_3_URL || 'https://bitrise03.test.mattermost.cloud';
|
|
export const siteThreeUrl = process.env.SITE_3_URL || 'https://bitrise03.test.mattermost.cloud';
|
|
export const smtpUrl = process.env.SMTP_URL || 'http://127.0.0.1:9001';
|
|
export const adminEmail = process.env.ADMIN_EMAIL || 'sysadmin@sample.mattermost.com';
|
|
export const adminUsername = process.env.ADMIN_USERNAME || 'sysadmin';
|
|
export const adminPassword = process.env.ADMIN_PASSWORD || 'Sys@dmin-sample1';
|
|
export const ldapServer = process.env.LDAP_SERVER || '127.0.0.1';
|
|
export const ldapPort = process.env.LDAP_PORT || '389';
|