-
Notifications
You must be signed in to change notification settings - Fork 19
/
settings.js.example
45 lines (36 loc) · 1.45 KB
/
settings.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
42
43
44
45
module.exports = {
base_url: "https://example.com",
collectives: {
sudoroom: {
name: "sudo room",
privs: ['member', 'admin'], // privileges supported by this collective
// membership levels
memberships: {
base: 10 // base membership is $10 per month
},
stripe_api_key: undefined, // Add your Stripe API key
stripe_publishable_key: undefined // Add your Stripe publishable key
},
ccl: {
name: "Counter Culture Labs",
privs: ['member', 'admin'], // privileges supported by this collective
// membership levels
memberships: {
food_safe_only: 20, // Food safe only membership at $20 per month
bsl_1: 80 // BSL-1 membership at $80 per month
},
stripe_api_key: undefined, // Add your Stripe API key
stripe_publishable_key: undefined // Add your Stripe publishable key
}
},
mailer: {
type: "smtp", // can also be "direct" or "console"
host: "localhost", // only needed for type: "smtp"
port: 25, // only needed for type: "smtp"
tls: false,
from_address: "[email protected]"
},
// If you want to log password reset attempts (and the new reset passwords)
// set this to the path of a log file relative to `bin/`
//log_password_reset: "../password_resets.log"
};