-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
27 lines (21 loc) · 746 Bytes
/
config.js
File metadata and controls
27 lines (21 loc) · 746 Bytes
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
var config = {}
config.name = "[company]";
config.social ={};
config.social.title = "Join [company]!";
config.social.link = "http://company.com";
config.social.description = "Join [company]";
config.social.twitter = "company";
config.email = {};
config.email.smtp = "smtp.gmail.com";
config.email.port = 465;
config.email.ssl = true;
config.email.username = "username@gmail.com";
config.email.password = "password";
config.email.from = "[company] <no-reply@company.com>";
config.email.support = "support@company.com";
config.analytics = {};
config.analytics.username = "username";
config.analytics.password = "password";
config.analytics.tracking_id = " UA-AAAAAAA-A";
config.analytics.profile_id = "ga:profile_id";
module.exports = config;