-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings-sample.json
79 lines (60 loc) · 1.42 KB
/
settings-sample.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"public": {
"debug": false,
"title": "My Site",
"tagline": "A very cool site.",
"siteUrl": "https://example.com",
"siteImage": "/img/foo.png",
"faviconUrl": "/img/bar.svg",
"environment": "development",
"locale": "en",
"googleAnalytics": {
"apiKey": "UA-12345-1"
},
"stripe": {
"publishableKeyTest": "pk_test_foo123",
"publishableKey": "pk_live_foo123"
},
"sentry": {
"clientDSN": "https://[email protected]/foo123"
},
"oneGraph": {
"appId": "foo123"
},
"hosting": "Localhost",
"hostingLink": "http://localhost:5000/"
},
"stripe": {
"secretKeyTest": "sk_test_foo123",
"secretKey": "sk_live_foo123",
"endpointSecret": "whsec_foo123"
},
"defaultEmail": "[email protected]",
"mailUrl": "smtp://127.0.0.1:1025",
"runCrons": true,
"newsletter": {
"provider": "emailoctopus"
},
"emailoctopus": {
"apiKey": "foo123",
"listId": "foo123",
"fromName": "My Site",
"fromEmail": "[email protected]"
},
"enableDevelopmentEmails": true,
"twitter": {
"apiKey": "foo123",
"apiSecret": "foo123",
"token": "foo123",
"tokenSecret": "foo123"
},
"sentry": {
"serverDSN": "https://[email protected]/foo123"
},
"apolloEngine": {
"apiKey": "service:foo:foo123"
},
"blog": {
"contentPath": "../../../../../public/md/blog/"
}
}