-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreate-jss-project.ps1
82 lines (70 loc) · 3.02 KB
/
create-jss-project.ps1
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
$ErrorActionPreference = "Stop"
##
## This script is used to add / initialize a JSS project using 'jss create'
## when this template is instantiated. It can be safely deleted.
##
Function Add-JssProject {
Write-Host "Adding JSS sample to solution via 'jss create'..."
if ($null -eq (Get-Command "npm" -ErrorAction SilentlyContinue))
{
Write-Host "You must install node.js, see https://nodejs.org/" -ForegroundColor Red
Exit 1
}
if ($null -eq (Get-Command "jss" -ErrorAction SilentlyContinue))
{
Write-Host "Installing Sitecore JSS CLI" -ForegroundColor Green
npm install -g @sitecore-jss/sitecore-jss-cli
}
Push-Location src
try {
$projectName = "jss-nextjs-storybook"
Write-Host "Creating JSS Project for $projectName" -ForegroundColor Green
# JSS project name transformed by our dotnet new template symbols
$jssProjectName = "jss-nextjs-storybook"
if ($jssProjectName -ne $projectName) {
Write-Host "Transformed to valid JSS project name $jssProjectName" -ForegroundColor Yellow
}
# Construct 'jss create' arguments based on input and defaults
$createArgs = @('create', $jssProjectName, 'nextjs')
# Both of these values are replaced by parameters from template.json
$jssCreateParams = "--fetchWith REST --prerender SSG"
$jssDefaultBranch = "--branch release/18.0.0"
if (-not $jssCreateParams.Contains("--branch")) {
$jssCreateParams = "$jssDefaultBranch $jssCreateParams"
}
$createArgs += $jssCreateParams.Split(' ')
# Suppress 'jss create' output to avoid confusion from default instructions
jss @createArgs | Out-Null
Move-Item -Force $jssProjectName rendering | Out-Null
Push-Location rendering
try {
jss setup `
--instancePath "..\..\docker\deploy\platform\" `
--layoutServiceHost "https://cm.jss_nextjs_storybook.localhost" `
--apiKey "bf7a9f2a-fa52-4391-b2b9-bf05eeadfdb0" `
--deployUrl "https://cm.jss_nextjs_storybook.localhost/sitecore/api/jss/import" `
--deploySecret "77f85bb537ef41c3ae21b9f49daabadd" `
--nonInteractive `
--skipValidation | Out-Null
Update-JssProjectFiles
} finally {
Pop-Location
}
} finally {
Pop-Location
}
Write-Host "Done!"
}
Function Update-JssProjectFiles {
Write-Host "Updating JSS sample for containerized environment" -ForegroundColor Green
# Update .gitignore
# Values will be consistent across developers and deployment secret is an env var
$gitignore = ".\.gitignore"
Set-Content -Path $gitignore -Value (
Get-Content $gitignore |
Select-String -NotMatch "# sitecore|scjssconfig.json|\*.deploysecret.config"
)
## Remove config patches since the dotnet new template provides them
Remove-Item -Recurse -Force .\sitecore\config
}
Add-JssProject