-
Notifications
You must be signed in to change notification settings - Fork 1
/
defaults.json
77 lines (62 loc) · 1.49 KB
/
defaults.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
75
76
77
{
"auth": {
"email": {
"server": {
"host": "smtp",
"port": "25",
"auth": {
"user": "",
"pass": ""
},
"secure": false
},
"from": "Microreact <noreply@microreact.org>",
"subject": "Login link for Microreact",
"text": "Hello!\nAccess your account here: http://localhost:80/auth/passwordless/callback?token=<%= tokenToSend %>&uid=",
"html": "views/emails/passwordless.html"
},
"facebook": {
"clientId": "",
"clientSecret": ""
},
"google": {
"clientId": "",
"clientSecret": ""
},
"twitter": {
"clientId": "",
"clientSecret": ""
},
"secret": "",
"session": {
"maxAge": 2592000,
"updateAge": 86400
}
},
"baseUrl": "https://microreact.org/",
"bodySizeLimit": "16mb",
"experimentalFlags": {
"publicFolders": false
},
"helpDesk": {
"email": "support@microreact.org",
"subject": "Feedback from Microreact.org"
},
"mapboxApiAccessToken": "pk.eyJ1IjoiY2dwc2RldiIsImEiOiJja2lhMndmN3AwbGpzMnhvNWZ0eWc3cWhoIn0.SDSaZCcDFP9s812jX1tzeA",
"mongodb": {
"url": "mongodb://localhost:27017/microreact",
"database": "microreact"
},
"repoPath": "./files",
"showcaseFolders": [],
"smtp": {
"host": "smtp.microreact.org",
"port": "25",
"auth": {
"user": "smtp@microreact.org",
"pass": ""
},
"secure": false,
"from": "Microreact <noreply@microreact.org>"
}
}