-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmt.json
105 lines (105 loc) · 3.36 KB
/
mt.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
{
"name": "sllor",
"not-found-page": "index.html",
"frame": "nextJS",
"start": {
"type": "SSR",
"command": "SERVERURL=${SERVERURL} PORT=${PORT} node server.js"
},
"config": {
"site": {
"name": {
"type": "string",
"value": "string",
"placeholder": "Sllor",
"tag": "input",
"option-name": "Site Name"
},
"short-introduce": {
"type": "string",
"value": "string",
"placeholder": "Introduce your site in one sentence (no more than 15 words)",
"tag": "input",
"option-name": "One sentence introduction"
},
"site-url": {
"type": "string",
"value": "url",
"placeholder": "https://www.example.com/",
"tag": "input",
"tips": "Your target domain / IP",
"option-name": "Domain/IP"
},
"main-color": {
"type": "string",
"value": "select",
"placeholder": [
"tomato",
"red",
"ruby",
"crimson",
"pink",
"plum",
"purple",
"violet",
"iris",
"indigo",
"blue",
"cyan",
"teal",
"jade",
"green",
"grass",
"brown",
"orange",
"sky",
"mint",
"lime",
"yellow",
"amber",
"gold",
"bronze",
"gray"
],
"option-name": "Main Color"
},
"lang": {
"type": "string",
"value": "select",
"placeholder": ["zhCn", "enUs"],
"option-name": "Language"
},
"logo": {
"type": "string",
"value": "image",
"option-name": "Site Logo",
"editor": "update"
},
"introduce": {
"type": "string",
"value": "markdown",
"placeholder": "# Sllor /n A good and pretty site",
"option-name": "Introduce",
"tips": "[MARKDOWN] Your text will show in index page"
},
"about": {
"type": "string",
"value": "markdown",
"placeholder": "# About \n > An apple ......",
"tag": "textarea",
"editor": "markdown",
"option-name": "About",
"tips": "[MARKDOWN] Your text will show in a dictionary, /about"
},
"footer": {
"type": "string",
"value": "markdown",
"placeholder": "## Sllor \n [About](/about) | [......",
"tag": "textarea",
"edit": "markdown",
"option-name": "Footer",
"tips": "[MARKDOWN] Your text will show at the end of every page."
}
}
}
}