-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
31 lines (21 loc) · 827 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
// Twitter App that has access to read, write, email
exports.TwitterWithWritePermissionsAccessKey = "";
exports.TwitterWithWritePermissionsAccessSecret = "";
//callback url : <protocol>://<domain>/auth/twitter/creator/callback
// e.g. https://jmel.org/auth/twitter/creator/callback
//Twitter App that has access to read, email
exports.TwitterWithReadPermissionsAccessKey = "";
exports.TwitterWithReadPermissionsAccessSecret = "";
//callback url : <protocol>://<domain>/auth/twitter/user/callback
// e.g. https://jmel.org/auth/twitter/user/callback
// e.g. https://jmel.org
exports.Root = "";
//SSL
exports.SSLPrivateKeyFilePath = "";
exports.SSLCertificateFilePath = "";
//Ports
exports.HTTPPort = 80;
exports.HTTPSPort = 443;
//Database (MongoDB)
exports.MongoDBConnection = "";
// npm start to run