-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.json
More file actions
executable file
·74 lines (74 loc) · 1.63 KB
/
install.json
File metadata and controls
executable file
·74 lines (74 loc) · 1.63 KB
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
{
"resources": {
"body": [
{
"type": "style",
"src": "./source/app.css"
},
{
"type": "script",
"src": "./source/app.js"
}
]
},
"preview": {
"handlers": [
{
"options": ["_default"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
}
]
},
"dns": [
{
"type": "MX",
"name": "@",
"content": "ASPMX.L.GOOGLE.COM",
"priority": 1
},
{
"type": "MX",
"name": "@",
"content": "ALT1.ASPMX.L.GOOGLE.COM",
"priority": 5
},
{
"type": "MX",
"name": "@",
"content": "ALT2.ASPMX.L.GOOGLE.COM",
"priority": 5
},
{
"type": "MX",
"name": "@",
"content": "ALT3.ASPMX.L.GOOGLE.COM",
"priority": 10
},
{
"type": "MX",
"name": "@",
"content": "ALT4.ASPMX.L.GOOGLE.COM",
"priority": 10
},
{
"type": "TXT",
"name": "@",
"content": "{{txt}}"
}
],
"options": {
"properties": {
"txt": {
"title": "TXT record",
"type": "string",
"format": "input",
"description": "If you don't have a gsuite account, sign up here: https://gsuite.google.com/signup/basic/welcome. Gsuite will ask you to add a TXT record to verify you own the doman. Enter the value here.",
"placeholder": "google-site-verification=abcef35gfd0s9ds09",
"pattern": "^google-site-verification=[A-Za-z0-9]{5}-[A-Za-z0-9]{37}$",
"validationMessage": {
"202": "Please make sure the input starts with 'google-site-verification="
}
}
}
}
}