-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
86 lines (79 loc) · 2 KB
/
config.js
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
{
/**
* GitHub username
* Used to fetch the data from a specific GitHub profile.'
* IMPORTANT: Don't forget to set your username here.'
*/
"githubUsername": "tsvetomirnik",
/**
* Full name
* Value:
* NULL to use the GitHub value
* STRING VALUE to override the one from GitHub
*/
"name": null,
/**
* Nickname
* Values:
* TRUE to use the GitHub value
* FALSE to hide the field
* STRING VALUE to override the one from GitHub
*/
"nickname": true,
/**
* Short description
* Values:
* TRUE to use the GitHub value
* FALSE to hide the field
* STRING VALUE to override the one from GitHub
*/
"bio": true,
/**
* Profile image
* Values:
* NULL to use the GitHub value
* STRING VALUE to override the one from GitHub
*/
"avatarUrl": null,
/**
* Current address
* Values:
* TRUE to use the GitHub value
* FALSE to hide the field
* STRING VALUE to override the one from GitHub
*/
"location": true,
/**
* Company
* Values:
* TRUE to use the GitHub value
* FALSE to hide the field
* STRING VALUE to override the one from GitHub
*/
"company": true,
/**
* Set of social profiles
* NOTE: Order can be changed;
* NOTE: Each icon can have text and link (not required);
* Values:
* NULL to skip that section
* Collection of icons
* Allowed Icon Types:
* ANGELLIST | EMAIL | BEHANCE | CODEPEN | DRIBBBLE | FACEBOOK | GITHUB | GOOGLE_PLUS | INSTAGRAM |
* LINKEDIN | PINTEREST | STACK_OVERFLOW | SKYPE | TWITTER | YOUTUBE | WEBSITE
*/
"socialIcons": [
{
"type": "EMAIL",
"text": "[email protected]"
},
{
"type": "GITHUB",
"link": "https://github.com/tsvetomirnik"
},
{
"type": "LINKEDIN",
"link": "https://bg.linkedin.com/in/tsvetomir-nikolov-9461685b"
}
]
}