-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.inc.php.new
87 lines (76 loc) · 1.3 KB
/
config.inc.php.new
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
<?php
/**
* Site Configuration
* 1. Rename this file to `config.inc.php`
* 2. Update and save
*/
/**
* Default User UUID
*/
define(
'DEFAULT_USER_UUID',
'e1e1e1e1e1-e1e1-e1e1-e1e1-e1e1e1e1e1e1'
);
/**
* DB Connection String
*/
define(
'POSTGRES_DB_CONN_STRING',
'postgresql://lexar:lexar@localhost:5433/lexar?connect_timeout=30'
);
/**
* DEBUG_API Constant
* Shows Real Error Message in API Responses when TRUE
*/
define(
'DEBUG_API',
false
);
/**
* Syntax Highlighting
*/
/**
* Syntax Highlighting
* Color Setting: highlight.string
* (default #DD0000)
*/
ini_set(
'highlight.string',
'rgba(44,200,200,0.9)'
);
/**
* Syntax Highlighting
* Color Setting: highlight.comment
* (default #FF8000)
*/
ini_set(
'highlight.comment',
'rgba(44,200,88,0.9)'
);
/**
* Syntax Highlighting
* Color Setting: highlight.keyword
* (default #007700)
*/
ini_set(
'highlight.keyword',
'rgba(200,200,88,0.9)'
);
/**
* Syntax Highlighting
* Color Setting: highlight.default
* (default #0000BB)
*/
ini_set(
'highlight.default',
'rgba(120,200,120,0.9)'
);
/**
* Syntax Highlighting
* Color Setting: highlight.html
* (default #000000)
*/
ini_set(
'highlight.html',
'rgba(44,200,88,0.9)'
);