-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredentials.js.example
42 lines (41 loc) · 947 Bytes
/
credentials.js.example
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
module.exports = {
cookieSecret: "change this",
authProviders: {
google: {
clientId: "",
email: "",
secret: "",
redirect: [
'http://packagetracker.uberduck.net/auth/google/callback'
],
origins: 'http://packagetracker.uberduck.net'
}
},
"apiKeys": {
"googleMaps": ""
},
shippingProviders: {
ups: {
environment: "live",
access_key: "",
account: "",
username: "",
password: ""
},
fedex: {
environment: "live",
debug: true,
key: "",
account_number: ,
meter_number: ,
password: "",
imperial: true
},
usps: {
username: "",
password: "",
debug: true,
imperial: true
}
}
};