-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp-config.js
43 lines (43 loc) · 1.58 KB
/
gulp-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
module.exports = function () {
var webroot = "C:\\inetpub\\wwwroot";
var siteName = "xc92";
var sitecoreRoot = webroot + "\\" + siteName + ".sc";
var config = {
sitecoreRoot: sitecoreRoot,
engineProjectPath: "./src/Project/Sitecore.Commerce.Engine",
buildConfiguration: "Release",
buildToolsVersion: 15.0,
buildMaxCpuCount: 0,
buildVerbosity: "minimal",
buildPlatform: "Any CPU",
publishPlatform: "AnyCpu",
runCleanBuilds: true,
xcDatabaseServer: ".",
xcCertificateThumbprint: "1D6F8BC71613D86F2E4FBC2F993B01F84DC5C3F7",
engineConnectIncludeDir: sitecoreRoot + '\\App_Config\\Include\\Y.Commerce.Engine',
engineHostname: "commerceauthoring." + siteName + ".com",
identityServerHostname: siteName + ".identityserver",
adminUser: "admin",
adminPassword: "b",
engineRoles: [
{
path: webroot + "\\CommerceAuthoring_" + siteName,
environmentName: 'HabitatAuthoring'
},
{
path: webroot + "\\CommerceShops_" + siteName,
environmentName: 'HabitatShops'
},
{
path: webroot + "\\CommerceOps_" + siteName,
environmentName: 'HabitatAuthoring'
},
{
path: webroot + "\\CommerceMinions_" + siteName,
environmentName: 'HabitatMinions'
},
],
publishProfile: "Local_Publish"
};
return config;
}