-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsettings.local.example.php
95 lines (77 loc) · 2.95 KB
/
settings.local.example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/**
* @file
* Local Backdrop CMS configuration file.
*/
/**
* Database settings. Use only one of these and comment out or remove the other.
*/
// If you are not running CiviCRM, you can use the simple database setting.
$database = 'mysql://username:[email protected]/backdropcmsorg';
// If you are running CiviCRM, you must use the advanced database setting, which
// includes prefixes that make the CiviCRM database tables visible to Backdrop.
// See https://backdropcms.org/project/civicrm_table_prefixes for more
// information about this.
require_once __DIR__ . '/civicrm_table_prefixes.php';
$databases = array(
'default' => array (
'default' =>
array (
'driver' => 'mysql',
'database' => 'backdropcmsorg',
'username' => '',
'password' => '',
'host' => '127.0.0.1',
'prefix' => $civicrm_table_prefixes,
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
),
),
);
/**
* Site configuration files location.
*/
$config_directories['active'] = '../config/dev-active';
$config_directories['staging'] = '../config/staging';
/**
* Trusted host configuration (needed to avoid a status warning).
*/
$settings['trusted_host_patterns'] = array('.*');
/**
* PRIVATE Environment specific settings.
*/
// Settings for Project GitHub integration. Note, these are deprecated. The
// should be removed after upgrading to the next version of Project module (beta
// 7), which will use the GitHub API module credentials below.
$settings['project_github_secret_key'] = '';
$settings['project_github_access_token'] = '';
// GitHub API module credentials.
$settings['githubapi_client_id'] = '';
$settings['githubapi_client_secret'] = '';
$settings['githubapi_token'] = '';
// BackdropCMS.org GitHub issues configuration.
$settings['borg_github_issues_code_owner_name'] = 'backdrop';
$settings['borg_github_issues_code_repo_name'] = 'backdrop';
$settings['borg_github_issues_repo_fullname'] = 'backdrop/backdrop-issues';
// RobinPanel credentials. Used to set up QA servers on vpn-private.net,
// which is aliased at qa.backdropcms.org.
$settings['rp_api_server'] = 'qa.backdropcms.org';
$settings['rp_api_username'] = '';
$settings['rp_api_password'] = '';
// Gitlc credentials. Used to push QA server information (that was set up by
// RobinPanel) to Gitlc. Gitlc then integrates the information into GitHub.
$settings['gitlc_webhook_api_token'] = '';
// Tugboat.QA credentials. Used to create demo sandboxes.
$settings['tugboat_access_token'] = '';
// MailChimp credentials.
$settings['mailchimp_key'] = '';
$settings['mailchimp_borg_list'] = '';
// SMTP Credentials.
$config['smtp.settings']['smtp_password'] = '';
// Credentials needed for the Newsletter signup block from borg_signup module.
// The define() versions will eventually be deprecated in favor of the
// $settings[] versions.
define('BORG_SIGNUP_KEY', '');
define('BORG_SIGNUP_URL', '');
$settings['borg_signup_key'] = '';
$settings['borg_signup_url'] = '';