forked from dappur/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json.dist
128 lines (128 loc) · 3.07 KB
/
settings.json.dist
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"framework": "dappur",
"version": "3.1.2",
"displayErrorDetails": false,
"environment": "development",
"db": {
"development": {
"driver": "mysql",
"host": "localhost",
"port": 3306,
"database": "framework",
"username": "dappur",
"password": "",
"charset": "utf8",
"collation": "utf8_general_ci",
"prefix": "",
"timezone": "+00:00"
},
"staging": {
"driver": "mysql",
"host": "localhost",
"port": 3306,
"database": "",
"username": "",
"password": "",
"charset": "utf8",
"collation": "utf8_general_ci",
"prefix": "",
"timezone": "+00:00"
},
"production": {
"driver": "mysql",
"host": "localhost",
"port": 3306,
"database": "",
"username": "",
"password": "",
"charset": "utf8",
"collation": "utf8_general_ci",
"prefix": "",
"timezone": "+00:00"
}
},
"view": {
"template_path": "../app/views/",
"twig": {
"cache": false,
"debug": false,
"auto_reload": true
},
"bootswatch": {
"api_url" : "https://bootswatch.com/api/3.json"
}
},
"csrf": {
"prefix": "dappurcsrf",
"storage_limit": 200,
"strength": 32,
"persist_tokens": false
},
"logger": {
"log_name": "Dappur",
"log_path": "../storage/log/monolog/",
"log_file_name": "dappur.log",
"le_token": ""
},
"cron": {
"token": ""
},
"cloudinary": {
"enabled": false,
"cloud_name": "",
"api_key": "",
"api_secret": ""
},
"deployment": {
"enabled": false,
"manual": false,
"deploy_url": "deploy",
"deploy_token": "",
"repo_url": "",
"repo_branch": "master"
},
"mail": {
"relay": "phpmail",
"logging": true,
"log_details": ["html", "plain_text"],
"log_retention": 30,
"smtp": {
"host": "smtp.mailgun.org",
"port": 587,
"smtp_auth": true,
"smtp_secure": "tls",
"username": "",
"password": ""
}
},
"recaptcha": {
"site_key": "",
"secret_key": ""
},
"oauth2": {
"facebook": {
"client_id": "",
"client_secret": ""
},
"google": {
"client_id": "",
"client_secret": ""
},
"twitter": {
"client_id": "",
"client_secret": ""
},
"linkedin": {
"client_id": "",
"client_secret": ""
},
"github": {
"client_id": "",
"client_secret": ""
},
"instagram": {
"client_id": "",
"client_secret": ""
}
}
}