Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 448 Bytes

windows.md

File metadata and controls

17 lines (11 loc) · 448 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.

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"