forked from singlelink-co/Singlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.js
36 lines (36 loc) · 1 KB
/
config-example.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
// Once filled, move this file to config.js to use it!
module.exports = {
// Is production?
production: true,
// MongoDB Connection URI
database: 'mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]]\n',
// Your JWT secret
secret: 'Your secret here!',
// Capture key is for thumbnails, obtainable from capture.neutron.so - this is not required
capture_key: '',
// API port
port: 80,
// API Domain
apiDomain: "https://api.singlelink.co",
// Client domain
clientDomain: "https://app.singlelink.co",
// Contact email
contactEmail: "[email protected]",
// AWS SES credentials for email
aws: {
senderEmailAddress: "",
region: "",
accessKey: "",
secretKey: ""
},
// AWS/DO Bucket credentials for SSL
// Singlelink is a proud partner of DigitalOcean... we recommend their services when available!
s3Bucket: {
endPoint: "",
bucketName: "",
port: 443,
useSSL: true,
accessKey: "",
secretKey: ""
},
};