This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php.dist
56 lines (55 loc) · 1.68 KB
/
config.inc.php.dist
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
<?php
return $config = [
'project' => [
'name' => 'Galette',
'url' => 'https://galette.eu',
'footer_links' => [
'Galette' => [
'faclass' => 'fa fa-globe',
'url' => 'https://galette.eu'
],
'Documentation' => [
'faclass' => 'fa fa-book',
'url' => 'https://doc.galette.eu'
],
'Forums' => [
'faclass' => 'fa fa-comments',
'url' => 'https://forums.galette.eu'
],
'Contact' => [
'faclass' => 'fa fa-pencil',
'url' => 'http://galette.eu/site/contact'
]
],
'schema' => [
'usage' => false ],
'mapping' => [
'avg_members' => 'avg_entities',
'avg_contributions' => 'avg_computers',
'avg_transactions' => 'avg_networkequipments'
],
'dyn_references' => [
'num_members' => [
'label' => 'Number of members',
'short_label' => '#members'
]
]
],
'baseurl' => 'https://telemetry.galette.eu',
'db' => [
'driver' => "pgsql",
'host' => "localhost",
'database' => "galette_telemetry",
'username' => "telemetry",
'password' => "telemetry",
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => ''
],
'recaptcha' => [
'sitekey' => '',
'secret' => ''
],
'mail_admin' => '',
'mail_from' => '[email protected]'
];