File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,6 @@ cd "${PROJECT_ROOT}"
14
14
(
15
15
trap ' kill 0' SIGINT
16
16
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
18
19
)
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ require (
67
67
github.com/hashicorp/hcl/v2 v2.11.1
68
68
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
69
69
github.com/hashicorp/terraform-exec v0.15.0
70
+ github.com/hashicorp/terraform-json v0.13.0
70
71
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87
71
72
github.com/jedib0t/go-pretty/v6 v6.3.1
72
73
github.com/justinas/nosurf v1.1.1
@@ -162,7 +163,6 @@ require (
162
163
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
163
164
github.com/hashicorp/go-multierror v1.1.1 // indirect
164
165
github.com/hashicorp/hcl v1.0.0 // indirect
165
- github.com/hashicorp/terraform-json v0.13.0 // indirect
166
166
github.com/imdario/mergo v0.3.12 // indirect
167
167
github.com/inconshreveable/mousetrap v1.0.0 // indirect
168
168
github.com/josharian/intern v1.0.0 // indirect
Original file line number Diff line number Diff line change 13
13
"windows" : {
14
14
"amd64" : `$ProgressPreference = "SilentlyContinue"
15
15
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
16
17
$env:CODER_AUTH = "${AUTH_TYPE}"
17
18
$env:CODER_URL = "${ACCESS_URL}"
18
19
Start-Process -FilePath $env:TEMP\sshd.exe -ArgumentList "agent" -PassThru` ,
You can’t perform that action at this time.
0 commit comments