forked from maxpozdeev/mytinytodo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.php
30 lines (30 loc) · 894 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
28
29
30
<?php
$config = array();
$config['db'] = 'sqlite';
$config['mysql.host'] = 'localhost';
$config['mysql.db'] = 'mytinytodo';
$config['mysql.user'] = 'user';
$config['mysql.password'] = '';
$config['prefix'] = 'mtt_';
$config['url'] = '';
$config['mtt_url'] = '';
$config['title'] = 'Sample TDX';
$config['lang'] = 'en';
# password can be an array of blank-separated passwords if you need more than one
$config['password'] = '';
$config['smartsyntax'] = 1;
$config['markdown'] = 0;
$config['timezone'] = 'Europe/Paris';
$config['autotag'] = 1;
$config['duedateformat'] = 1;
$config['firstdayofweek'] = 1;
$config['session'] = 'files';
$config['clock'] = 24;
$config['dateformat'] = 'j M Y';
$config['dateformat2'] = 'Y-m-d';
$config['dateformatshort'] = 'j M';
$config['template'] = 'default';
$config['showdate'] = 1;
$config['alientags'] = 1;
$config['taskxrefs'] = 1;
$config['dbbackup'] = 0;