Skip to content

Commit 620c889

Browse files
authored
fix: change dev tunnel default back to true (coder#630)
1 parent bd20d9e commit 620c889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ func start() *cobra.Command {
331331
"Specifies the path to the private key for the certificate. It requires a PEM-encoded file")
332332
cliflag.StringVarP(root.Flags(), &tlsMinVersion, "tls-min-version", "", "CODER_TLS_MIN_VERSION", "tls12",
333333
`Specifies the minimum supported version of TLS. Accepted values are "tls10", "tls11", "tls12" or "tls13"`)
334-
cliflag.BoolVarP(root.Flags(), &useTunnel, "tunnel", "", "CODER_DEV_TUNNEL", false, "Serve dev mode through a Cloudflare Tunnel for easy setup")
334+
cliflag.BoolVarP(root.Flags(), &useTunnel, "tunnel", "", "CODER_DEV_TUNNEL", true, "Serve dev mode through a Cloudflare Tunnel for easy setup")
335335
_ = root.Flags().MarkHidden("tunnel")
336336
cliflag.BoolVarP(root.Flags(), &traceDatadog, "trace-datadog", "", "CODER_TRACE_DATADOG", false, "Send tracing data to a datadog agent")
337337

0 commit comments

Comments
 (0)