-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.config.js
62 lines (45 loc) · 1.55 KB
/
test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* This is the test configuration file, fill in the blanks and rename th file to "config.js" to start the app!
*/
let config = {};
// The Domain on which this instance of the app runs on (e.g. "listx.io")
config.domain = "";
// An email-address of the developer or maintainer for updates on restarts and app status (e.g. "dev@company.com")
config.devMail = "";
// A long and random secret used to en-/decrypt JSON Web Tokens, learn more at https://jwt.io
config.jwtSecret = "";
// mailgun configuration:
config.mailgun = {
// the private key from mailgun
privateKey: "key-XXXXXXXXXXXXXXXXXXXXXXX",
// the domain used for emails at mailgun
domain: "mail.company.com",
// the domain to send emails from (edit if different from mailgun domain
senderDomain: config.mailgun.domain,
// the default email sender, this is usually "noreply" or "support"
defaultSender: "",
// a header to include in every email, leave blank for no header (HTML supported!)
email_default_header: ``,
// a footer to include in every email, leave blank for no footer (HTML supported!)
email_default_footer: ``
};
// mongoDB configuration:
config.mongo = {
// address of the mongod instance (e.g. "mongodb://localhost:27017")
address: ""
};
// Cloudinary configuration:
config.cloudinary = {
// name of the cloud
cloud_name: "",
api_key: "",
api_secret: ""
};
// reCaptcha config
config.reCaptcha = {
// private key for this site
privateKey: ""
};
// the length of slugs appended to short-urls
config.slugLength = 5;
module.exports = config;