-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
31 lines (22 loc) · 726 Bytes
/
config.php
File metadata and controls
31 lines (22 loc) · 726 Bytes
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
<?php
// ============ A P P S E T T I N G S ============
$app['url'] = 'http://localhost:8200';
$app['title'] = 'Welcome';
// ============ D A T A B A S E ============
$app['db']['mysql'] = [
'host' => '',
'username' => '',
'password' => '',
'database' => '',
'charset' => '',
];
// modify error messages
$app['error_bag'] = [
0 => 'Please define your routes in routes.php',
1 => 'Template not found',
2 => 'Undefined controller',
3 => 'Page does not exist',
4 => 'Ops! each route must be unique, you cannot declare same route at the same time',
5 => 'Config name not found!',
6 => 'Route not found',
];