* E2E for LDAP login * add LDAP test and sync * update per comment * add api commands to ensure LDAP user has team * clean up * clean up file check * update per comment
11 lines
536 B
JavaScript
11 lines
536 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
module.exports = {
|
|
serverUrl: process.env.SITE_URL || (process.env.IOS ? 'http://localhost:8065' : 'http://10.0.2.2:8065'),
|
|
siteUrl: process.env.SITE_URL || 'http://localhost:8065',
|
|
adminUsername: process.env.ADMIN_USERNAME || 'sysadmin',
|
|
adminPassword: process.env.ADMIN_PASSWORD || 'Sys@dmin-sample1',
|
|
ldapServer: process.env.LDAP_SERVER || 'localhost',
|
|
ldapPort: process.env.LDAP_PORT || 389,
|
|
};
|