forked from lowlighter/metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.example.json
110 lines (109 loc) · 4.31 KB
/
settings.example.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"//": "Example of configuration for metrics web instance",
"//": "====================================================================",
"token": "MY GITHUB API TOKEN", "//": "GitHub Personal Token (required)",
"restricted": [], "//": "Authorized users (empty to disable)",
"maxusers": 0, "//": "Maximum users, (0 to disable)",
"cached": 3600000, "//": "Cache time rendered metrics (0 to disable)",
"ratelimiter": null, "//": "Rate limiter (see express-rate-limit documentation)",
"port": 3000, "//": "Listening port",
"optimize": true, "//": "SVG optimization",
"debug": false, "//": "Debug logs",
"mocked": false, "//": "Use mocked data instead of live APIs (use 'force' to use mocked token even if real token are defined)",
"repositories": 100, "//": "Number of repositories to use",
"padding": ["6%", "13%"], "//": "Image padding (default)",
"hosted": {
"by": "", "//": "Web instance host (displayed in footer)",
"link": "", "//": "Web instance host link (displayed in footer)"
},
"community": {
"templates": [], "//": "Additional community templates to setup"
},
"templates": {
"default": "classic", "//": "Default template",
"enabled": [], "//": "Enabled templates (empty to enable all)"
},
"plugins.default": false, "//": "Default plugin state (advised to let 'false' unless in debug mode)",
"plugins": { "//": "Global plugin configuration",
"activity":{
"enabled": false, "//": "Display recent activity"
},
"contributors":{
"enabled": false, "//": "Display repository contributors"
},
"followup":{
"enabled": false, "//": "Display follow-up of repositories issues and pull requests"
},
"gists":{
"enabled": false, "//": "Display gists metrics"
},
"habits":{
"enabled": false, "//": "Display coding habits metrics"
},
"introduction":{
"enabled": false, "//": "Display account or repository introduction"
},
"isocalendar":{
"enabled": false, "//": "Display an isometric view of your commits calendar"
},
"languages":{
"enabled": false, "//": "Display most used languages metrics"
},
"licenses":{
"enabled": false, "//": "Display licenses informations"
},
"lines":{
"enabled": false, "//": "Display lines of code metrics"
},
"people":{
"enabled": false, "//": "Display GitHub users from various affiliations"
},
"projects":{
"enabled": false, "//": "Display active projects"
},
"skyline":{
"enabled": false, "//": "Display GitHub Skyline 3D calendar"
},
"stargazers":{
"enabled": false, "//": "Display stargazers metrics"
},
"stars":{
"enabled": false, "//": "Display recently starred repositories"
},
"topics":{
"enabled": false, "//": "Display starred topics"
},
"traffic":{
"enabled": false, "//": "Display repositories traffic metrics"
},
"anilist":{
"enabled": false, "//": "Display data from your AniList account"
},
"music":{
"token": null, "//":"Music provider personal token",
"enabled": false, "//": "Display your music tracks"
},
"pagespeed":{
"token": null, "//":"PageSpeed token",
"enabled": false, "//": "Display a website Google PageSpeed metrics"
},
"posts":{
"enabled": false, "//": "Display recent posts"
},
"stackoverflow":{
"enabled": false, "//": "Stackoverflow metrics"
},
"tweets":{
"token": null, "//":"Twitter API token",
"enabled": false, "//": "Display recent tweets"
},
"wakatime":{
"token": null, "//":"WakaTime API token",
"enabled": false, "//": "Display WakaTime stats"
},
"nightscout":{
"enabled": false, "//": "Displays Blood Glucose"
},
"//": ""
}
}