-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
49 lines (48 loc) · 939 Bytes
/
settings.json
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
46
47
48
49
{
"public": {
"plans": [{
"name": "tiny",
"amount": {
"cents": 500,
"usd": "$5"
},
"limit": 1,
"interval": "month"
}, {
"name": "small",
"amount": {
"cents": 1000,
"usd": "$10"
},
"limit": 5,
"interval": "month"
},
{
"name": "medium",
"amount": {
"cents": 1500,
"usd": "$15"
},
"limit": 10,
"interval": "month"
}, {
"name": "large",
"amount": {
"cents": 2000,
"usd": "$20"
},
"limit": 20,
"interval": "month"
}],
"stripe": {
"testPublishableKey": "sk_test_SPVzieat8HCaKQI0gRqC1yPj",
"livePublishableKey": "pk_test_gGsssQZSj9M6t5prPRcZhp8s"
}
},
"private": {
"stripe": {
"testSecretKey": "sk_live_0uhv8KV40NCe79pJDtTWejWD",
"liveSecretKey": "pk_live_xCf875JmKfJtZkAVtwmshMEt"
}
}
}