-
Notifications
You must be signed in to change notification settings - Fork 1
/
.config.php
28 lines (24 loc) · 870 Bytes
/
.config.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
<?php
// Rename this file to config.php and edit settings.
// Connection details.
$config_pdo_connection = 'mysql:host=HOSTNAME;port=3306;dbname=DBNAME;charset=utf8';
$config_pdo_readonly_user = 'READONLY_USERNAME';
$config_pdo_readonly_password = 'READONLY_PASSWORD';
$config_pdo_write_user = 'WRITE_USERNAME';
$config_pdo_write_password = 'WRITE_PASSWORD';
$config_pdo_attributes = array(PDO::ATTR_PERSISTENT => true);
// Countries for which new tables are imported or updated. For every country there must be a directory with that name containing the TMC location code tables in TISA format.
$config_countries = array(
'be' => "Belgium",
'de' => "Germany",
'es' => "Spain",
'fi' => "Finland",
'fr' => "France",
'it' => "Italy",
'no' => "Norway",
'se' => "Sweden",
'sk' => 'Slovakia'
);
// Directory in which tables can be found.
$config_lt_dir = '.';
?>