-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset.php
More file actions
77 lines (60 loc) · 1.86 KB
/
Copy pathset.php
File metadata and controls
77 lines (60 loc) · 1.86 KB
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
<?php
namespace Deployer;
/**
* Feature Deployment
*/
set('mysql', 'mysql');
set('project', 'kickstarter');
set('database_host', '127.0.0.1');
set('database_port', 3306);
// ToDo: actually not configurable because of the feature index app
set('feature_directory_path', '.fbd/');
#set('database_collation', null);
#set('database_charset', null);
/**
* Feature Sync
*/
#set('feature_sync_config', null);
set('db_sync_tool', 'db_sync_tool'); # set to false, to disable db sync
set('file_sync_tool', 'file_sync_tool'); # set to false, to disable file sync
set('feature_sync_target_path', null);
set('feature_sync_target_path_files', null);
/**
* Feature Notification
*/
set('feature_msteams_color', '#0097A7');
set('feature_msteams_text', 'Der Branch **[{{feature}}]({{public_url}})** wurde bereitgestellt.');
/**
* Feature Url Shortener
*/
set('feature_url_shortener', true);
set('feature_url_shortener_path', '{{feature_directory_path}}instances/');
/**
* Feature Index
*/
set('feature_index_title', 'DEMO');
set('feature_index_app_path', '');
//set('feature_index_additional_links', [
// 'title' => 'path'
//]);
//set('feature_index_app_type', 'symfony');
set('feature_index_jira_browse', 'https://acme.atlassian.net/browse/');
set('feature_index_jira_api', 'https://acme.atlassian.net/rest/api/1/issue/');
set('feature_index_jira_auth', '');
set('feature_index_git_branch', '');
/**
* Feature Stop
*/
set('feature_stop_disallowed_names', [
'main',
'master'
]);
/**
* Database Manager
*/
set('database_manager_type', 'default');
// Resolve the Mittwald database hostname to its IP and pin it in .env (workaround for DNS
// flapping of freshly created databases). Disabled by default, since pinning the IP breaks
// when Mittwald rotates IPs or enforces TLS against the hostname. Enable only if affected by
// DNS flapping.
set('mittwald_resolve_host_to_ip', false);