-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-devel.php
50 lines (40 loc) · 1.16 KB
/
config-devel.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
<?php
return [
/**
* Application settings
*/
'APP_TITLE' => 'LiteMVC',
'APP_DESCRIPTION' => 'Simple MVC framework for PHP 7.1.0 and later',
'APP_LANG' => 'en',
'LOG_FILE' => realpath(__DIR__ . '/../../Logs') . '/error.log',
/**
* Smarty configuration
*/
'PATH_SMARTY_CACHE' => realpath(__DIR__ . '/../../Temp/Smarty/Cache'),
'PATH_SMARTY_COMPILE' => realpath(__DIR__ . '/../../Temp/Smarty/Compile'),
'PATH_SMARTY_TEMPLATES' => realpath(__DIR__ . '/../Views'),
/**
* Default controller and action
*/
'DEFAULT_CONTROLLER' => 'page',
'DEFAULT_ACTION' => 'view',
/**
* Database configuration
*/
'DB_TYPE' => 'pgsql',
'DB_HOST' => 'localhost',
'DB_NAME' => 'postgres',
'DB_USER' => 'postgres',
'DB_PASS' => '',
'DB_PORT' => '5432',
'DB_CHARSET' => 'utf8',
/**
* SMTP configuration
*/
'EMAIL_SMTP_HOST' => 'smtp.example.com',
'EMAIL_SMTP_AUTH' => true,
'EMAIL_SMTP_USERNAME' => 'user@example.com',
'EMAIL_SMTP_PASSWORD' => 'secret',
'EMAIL_SMTP_PORT' => 465,
'EMAIL_SMTP_ENCRYPTION' => 'ssl',
];