-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
51 lines (29 loc) · 986 Bytes
/
config.sample.php
File metadata and controls
51 lines (29 loc) · 986 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Config file
*
* @package Core-o-Graphy
*/
/** $production boolean Defines if the application is
in production */
$production = false;
/** $base_url String Defines the base_path of the application */
$base_url = '//';
/** $dsn String Database connection string */
$dsn = 'mysql:host=localhost;dbname=;charset=utf8mb4';
/** $user String Database user */
$user='';
/** $password String Database password */
$password='';
/** $email_server String The email server */
$email_server = '';
/** $email_port String The port of the email server */
$email_port = '';
/** $email_protocol String The protocol of the mail server*/
$email_protocol = 'tls';
/** $email_username String The user of the email account*/
$email_username = '';
/** $email_password String The password of the email account*/
$email_password = '';
/** $email_from String The 'from' account */
$email_from = '';