-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
40 lines (40 loc) · 887 Bytes
/
config.js
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
module.exports = {
analyticsTrackingId: {
live: 'UA-XXXXXXXXX-1',
test: 'UA-XXXXXXXXX-2'
},
cookies: {
maxAge: 1000 * 60 * 60 * 24 * 30 * 12 * 1000,
secret: 'xxxxxxxxxxxxxxxxxxxxxxxx'
},
db: {
host: 'localhost',
name: 'talcanal',
password: 'xxxxxxxxxxxxxxxxxxxxxxxx',
port: 27017,
username: 'xxxxx'
},
mailGun: {
apiKey: 'key-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
domain: 'mg.domain.com',
host: 'api.eu.mailgun.net',
sendFrom: '[email protected]'
},
news: {
autoFetch: false,
limitNewsPerFetch: 3
},
server: {
address: '127.0.0.1',
port: 3000
},
spaces: {
endpoint: 'ams3.digitaloceanspaces.com',
key: 'XXXXXXXXXXXXXXXXXX',
secret: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
},
thum: {
key: 'XXXXXXXXXXXXXX',
url: 'http://image.thum.io/get/auth'
}
}