@@ -6,12 +6,12 @@ Choose your installation method.
66
77## 📦 Installation Methods
88
9- | Method | Use Case | Command |
10- | --------| ---------- | --------- |
11- | ** Docker** | Production, testing | ` docker compose --profile prod up -d ` |
12- | ** Go Install** | CLI or Development | ` go install github.com/sudo-Tiz/dns-tester-go/cmd/dnstestergo@latest ` |
13- | ** Binary** | No Go/Docker | [ Download from Releases] ( https://github.com/sudo-Tiz/dns-tester-go/releases ) |
14- | ** Source** | Development | ` make build ` |
9+ | Method | Command |
10+ | --------| ---------|
11+ | ** Docker** | ` docker compose --profile prod up -d ` |
12+ | ** Go Install** | ` go install github.com/sudo-Tiz/dns-tester-go/cmd/dnstestergo@latest ` |
13+ | ** Binary** | [ Download from Releases] ( https://github.com/sudo-Tiz/dns-tester-go/releases ) |
14+ | ** Source** | ` make build ` |
1515
1616---
1717
@@ -48,7 +48,36 @@ cd dns-tester-go
4848make build
4949```
5050
51- ** Binaries** : ` bin/dnstestergo-query ` , ` bin/dnstestergo-server ` , ` bin/dnstestergo-worker `
51+ ** Binaries** : ` bin/dnstestergo ` , ` bin/dnstestergo-query ` , ` bin/dnstestergo-server ` , ` bin/dnstestergo-worker `
52+
53+ ---
54+
55+ ## 📥 Download Pre-built Binaries
56+
57+ [ View all releases] ( https://github.com/sudo-Tiz/dns-tester-go/releases )
58+
59+ ** Quick Install:**
60+ ``` bash
61+ # Set your platform (linux/darwin/windows) and arch (amd64/arm64)
62+ VERSION=v1.0.0 # Replace with latest version
63+ OS=linux # or darwin (macOS), windows
64+ ARCH=amd64 # or arm64
65+
66+ # Download and install
67+ curl -L " https://github.com/sudo-Tiz/dns-tester-go/releases/download/${VERSION} /dnstestergo-${OS} -${ARCH} " -o dnstestergo && \
68+ chmod +x dnstestergo && \
69+ sudo mv dnstestergo /usr/local/bin/
70+ ```
71+
72+ ** Available binaries:**
73+ - ` dnstestergo-{os}-{arch} ` - All-in-one (recommended)
74+ - ` dnstestergo-server-{os}-{arch} ` - API server only
75+ - ` dnstestergo-worker-{os}-{arch} ` - Worker only
76+ - ` dnstestergo-query-{os}-{arch} ` - CLI query tool
77+
78+ ** Supported:** ` linux/darwin/windows ` × ` amd64/arm64 `
79+
80+ ** Windows:** Download ` .exe ` from releases and add to PATH.
5281
5382---
5483
0 commit comments