forked from microreact/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
microreact_config_example.json
50 lines (50 loc) · 1.37 KB
/
microreact_config_example.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
{
"auth": {
"email": {
"server": {
"host": "mailhog",
"port": "1025",
"auth": {
"user": "user",
"pass": "test"
},
"secure": false
},
"from": "Microreact <[email protected]>",
"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"
},
"secret": "asdas",
"session": {
"maxAge": 2592000,
"updateAge": 86400
}
},
"baseUrl": "https://dev2.sofi-platform.dk/",
"bodySizeLimit": "16mb",
"experimentalFlags": {
"publicFolders": false
},
"helpDesk": {
"email": "[email protected]",
"subject": "Feedback from Microreact.org"
},
"mapboxApiAccessToken": "pk.eyJ1IjoiY2dwc2RldiIsImEiOiJja2lhMndmN3AwbGpzMnhvNWZ0eWc3cWhoIn0.SDSaZCcDFP9s812jX1tzeA",
"mongodb": {
"url": "mongodb://mongodb:27017/mongodb_test",
"database": "mongodb_test"
},
"repoPath": "./files",
"showcaseFolders": [],
"smtp": {
"host": "mailhog",
"port": "1025",
"auth": {
"user": "user",
"pass": "test"
},
"secure": false,
"from": "Microreact <[email protected]>"
}
}