-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.js.example
More file actions
43 lines (42 loc) · 1.12 KB
/
config.js.example
File metadata and controls
43 lines (42 loc) · 1.12 KB
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
//All API keys and passwords are for example only - DO NOT COMMIT FUNCTIONAL API KEYS TO THIS FILE!!!
var config = {
//Server config
host : "localhost",
port : "8080",
secret : "supersecretsessionkey",
fqdn : "localhost",
//SQL Config
sql : {
enabled: true,
host : "localhost",
user : "",
password : "",
dbname : "txstexe"
},
facebook : {
clientID : "1526213684358333",
clientSecret : "3a219525c461dc70b2b147ffdd32f169"
},
mailchimp : {
apikey : "face0123456789-us12",
list : "12345"
},
paypal : {
mode : "sandbox",
client_id : "EBWKjlELKMYqRNQ6sYvFo64FtaRLRR5BdHEESmha49TM",
client_secret: "EO422dn3gQLgDbuwqTjzrFgFtaRLRR5BdHEESmha49TM"
},
stripe : {
secret : "",
public : ""
},
google : {
calendar_id : "someuser@example.com"
},
txst : {
secret: "secret"
},
//The following should absouletely be turned on in production, and is only if your computer doesn't support bcrypt.
bcrypt: true
};
module.exports = config;