forked from pixeline/bugs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.app.example.php
More file actions
executable file
·95 lines (86 loc) · 2.28 KB
/
config.app.example.php
File metadata and controls
executable file
·95 lines (86 loc) · 2.28 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
return array(
/** URL
* You can define your URL or leave blank to let us figure it out
* - Sometimes in non-apache setups you need to define your url
*/
'url' => '',
/** Database
* Fill out your database settings. Make sure that the driver is correct: 'mysql' for MySQL, 'sqlsrv' for MSSQL,
* 'pgsql' for PostgreSQL, or 'sqlite' for SQLite
*/
'database' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'database_name',
'username' => 'database_user',
'password' => 'database_password',
),
/** Date format */
'my_bugs_app'=>array(
'name'=> 'Bugs',
'date_format'=>'F jS \a\t g:i A',
),
/** Mail
* Mail Settings
* - Put in the name and email you would like email from Tiny Issue to come from
* - This is usually only for setting up new accounts
*
* Default Mail Transport
* |
* | Possible Values
* | mail (PHP Mail Function)
* | sendmail (Sendmail)
* | smtp (Define Custom SMTP)
*
*/
'mail' => array(
'from' => array(
'name' => 'Your E-Mail Name',
'email' => 'name@domain.com',
),
/**
* Transport Settings
* Transport settings if using mail or smtp
* 'mail' or 'smtp' must be lower case
*/
'transport' => 'smtp',
'sendmail' => array('path' => ''),
'smtp' => array(
'server' => 'smtp.gmail.com',
'port' => 587,
/*
* Encryption support, SSL/TLS, used with gmail servers
* Default: blank
* 'ssl' or 'tls' must be lower case
* Here example for gmail server
*/
'encryption' => 'tls',
'username' => 'xyzxyz',
'password' => '******',
),
),
/** Timezone
* Specify your timezone
* - http://php.net/manual/en/timezones.php
*/
'timezone' => 'Europe/Brussels',
/** Session key
* Put in a random key combination to use as your session keys
* Up to 32 characters
* You can use this online generator: http://online-code-generator.com/generate-salt-random-string.php
*/
'key' => 'yourrandomkey',
/** mod_rewrite
* True if you are using mod rewrite
* False if you are not
*/
'mod_rewrite' => true,
/** Percentage
*Percentage of issue done
*Make sure your array count 5 items, the fifth must be 100
*In order: (done, open, inProgress, Testing, SysNeed)
*Default: (100,0,10,80,100)
*/
'Percent' => array (100,0,10,80,100),
);