-
Notifications
You must be signed in to change notification settings - Fork 8
/
sitecore-packages.json
112 lines (112 loc) · 3.61 KB
/
sitecore-packages.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
111
112
{
"Parameters": {
"LocalStorage": {
"Type": "string",
"Description": "The root folder for packages"
},
"SiteName": {
"Type": "string",
"DefaultValue": "sitecore",
"Description": "The name of the site to be deployed."
}
},
"Modules": [
"SitecoreInstallExtensions"
],
"Variables": {
"Site.PhysicalPath": "[joinpath(environment('SystemDrive'), 'inetpub', 'wwwroot', parameter('SiteName'))]",
"Site.PackagesPath": "[joinpath(variable('Site.PhysicalPath'),'Data','Packages')]",
"Site.WebsiteFolder": "[joinpath(variable('Site.PhysicalPath'), 'Website')]"
},
"Tasks": {
"CopyPackageInstaller": {
"Type": "Copy",
"Params": {
"Source": [ "[joinpath(parameter('LocalStorage'),'PackageInstaller.asmx')]" ],
"Destination": [ "[variable('Site.WebsiteFolder')]" ]
}
},
"CopySPEPackage": {
"Type": "Copy",
"Params": {
"Source": [ "[joinpath(parameter('LocalStorage'),'Sitecore PowerShell Extensions-4.7 for Sitecore 8.zip')]" ],
"Destination": [ "[variable('Site.PackagesPath')]" ]
}
},
"CopySXAPackage": {
"Type": "Copy",
"Skip": "True",
"Params": {
"Source": [ "[joinpath(parameter('LocalStorage'),'Sitecore Experience Accelerator 1.6 rev. 180103 for 8.2.zip')]" ],
"Destination": [ "[variable('Site.PackagesPath')]" ]
}
},
"CopyWFFMPackage": {
"Type": "Copy",
"Params": {
"Source": [ "[joinpath(parameter('LocalStorage'),'Web Forms for Marketers 8.2 rev. 171103.zip')]" ],
"Destination": [ "[variable('Site.PackagesPath')]" ]
}
},
"InstallSPEPackage": {
"Type": "InstallSitecorePackage",
"Params": {
"HostName": "[parameter('SiteName')]",
"PackagePath": "[joinpath(variable('Site.PackagesPath'),'Sitecore PowerShell Extensions-4.7 for Sitecore 8.zip')]"
}
},
"InstallSXAPackage": {
"Type": "InstallSitecorePackage",
"Skip": "True",
"Params": {
"HostName": "[parameter('SiteName')]",
"PackagePath": "[joinpath(variable('Site.PackagesPath'),'Sitecore Experience Accelerator 1.6 rev. 180103 for 8.2.zip')]"
}
},
"InstallWFFMPackage": {
"Type": "InstallSitecorePackage",
"Params": {
"HostName": "[parameter('SiteName')]",
"PackagePath": "[joinpath(variable('Site.PackagesPath'),'Web Forms for Marketers 8.2 rev. 171103.zip')]"
}
},
"AddImageCaptcha": {
"Type": "SetXml",
"Params": {
"FilePath": "[joinpath(variable('Site.WebsiteFolder'), 'Web.config')]",
"XPath": "//configuration/system.webServer/handlers",
"Element": "add",
"Attributes": [
{
"name": "CaptchaImage",
"verb": "*",
"path": "CaptchaImage.axd",
"type": "Sitecore.Form.Core.Pipeline.RequestProcessor.CaptchaResolver, Sitecore.Forms.Core"
}
]
}
},
"AddAudioCaptcha": {
"Type": "SetXml",
"Params": {
"FilePath": "[joinpath(variable('Site.WebsiteFolder'), 'Web.config')]",
"XPath": "//configuration/system.webServer/handlers",
"Element": "add",
"Attributes": [
{
"name": "CaptchaAudio",
"verb": "*",
"path": "CaptchaAudio.axd",
"type": "Sitecore.Form.Core.Pipeline.RequestProcessor.CaptchaResolver, Sitecore.Forms.Core"
}
]
}
},
"RemovePackageInstaller": {
"Type": "Remove",
"Params": {
"Source": [ "[joinpath(variable('Site.WebsiteFolder'),'PackageInstaller.asmx')]" ]
}
}
}
}