-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
74 lines (74 loc) · 1.89 KB
/
config.json
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
{
"general": {
"production": true,
"company": "BubbleCoup",
"logo": "bubblecoup",
"delimeter": {
"web": " · ",
"email": " - "
},
"description": [
"Offering a more efficient and fair resource for consumers and local businesses alike."
],
"backdrop": "santa_cruz",
"default": "/"
},
"development": {
"debugger": {
"theme": "/lib/debugger/edt.css",
"panels": [
"locals",
"request",
"session"
]
}
},
"cookies": {
"rememberme": "usrr",
"session": {
"key": "usrs",
"secret": "8ucsTLrvSyaKOCpP4oB6kVlqCOU31qt7ZhoX3EqzDymCTX2SqB"
}
},
"orm": {
"reset": false,
"preload": false,
"sync": true,
"debug": false,
"protocol": "mysql:",
"host": "127.0.0.1",
"database": "bubblecoup",
"user": "root",
"password": "bubblecoup"
},
"stripe": {
"production": "sk_test_YPp6Iew2IQkSOOP1CXRIg741",
"development": "sk_test_YPp6Iew2IQkSOOP1CXRIg741"
},
"icons": {
"search": "icon-search-2",
"close": "icon-plus-3",
"facebook": "icon-facebook",
"twitter": "icon-twitter",
"google": "icon-google-plus"
},
"forever": {
"uid": "bubblecoup",
"silent": false,
"watch": true,
"watch_directory": "./",
"watch_ignore_dot": true,
"watch_ignore_patterns": [
"config.tmp.json",
"node_modules/**",
"public/less/**",
"public/js/**",
"**.log",
".*/**",
".*"
],
"max_failures": 1000,
"output_log": "../logs/bubblecoup/log.out",
"error_log": "../logs/bubblecoup/log.error"
}
}