Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 487 Bytes

windows.md

File metadata and controls

19 lines (12 loc) · 487 Bytes

LaunchDarkly Relay Proxy - Building and running in Windows

(Back to README)

To run the Relay Proxy as a Windows service, you must first build it with the Go compiler:

go build

This creates the executable ld-relay.exe.

The Go version must be at least 1.17.

Then, to register it as a service, use:

sc create ld-relay DisplayName="LaunchDarkly Relay Proxy" start="auto" binPath="C:\path\to\ld-relay.exe -config C:\path\to\ld-relay.conf"