Skip to content

Commit 2e46033

Browse files
authored
Merge pull request #26 from Particular/sp-on-custom-port
Starting sp on 8051 port
2 parents 36626b6 + cdf8072 commit 2e46033

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

existingDB.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ try {
234234
Start-Sleep -s 25
235235

236236
Write-Host "Starting ServicePulse"
237-
$pulse = (Start-Process ".\Platform\servicepulse\ServicePulse.Host.exe" -WorkingDirectory ".\Platform\servicepulse" -Verb runAs -PassThru -WindowStyle Minimized)
237+
$pulse = (Start-Process ".\Platform\servicepulse\ServicePulse.Host.exe" -ArgumentList "--url=`"http://localhost:8051`"" -WorkingDirectory ".\Platform\servicepulse" -Verb runAs -PassThru -WindowStyle Minimized)
238238

239239
Write-Host -ForegroundColor Yellow "Press ENTER to shut down demo"
240240
Read-Host

localDB.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ try {
157157
Start-Sleep -s 25
158158

159159
Write-Host "Starting ServicePulse"
160-
$pulse = (Start-Process ".\Platform\servicepulse\ServicePulse.Host.exe" -WorkingDirectory ".\Platform\servicepulse" -Verb runAs -PassThru -WindowStyle Minimized)
160+
$pulse = (Start-Process ".\Platform\servicepulse\ServicePulse.Host.exe" -ArgumentList "--url=`"http://localhost:8051`"" -WorkingDirectory ".\Platform\servicepulse" -Verb runAs -PassThru -WindowStyle Minimized)
161161

162162
Write-Host -ForegroundColor Yellow "Press ENTER to shutdown demo"
163163
Read-Host

0 commit comments

Comments
 (0)