You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@
4
4
-[Local Development](#local-development)
5
5
-[Features](#features)
6
6
-[Installation](#installation)
7
+
-[Binary](#binary)
8
+
-[Docker](#docker)
9
+
-[Go](#go)
10
+
-[Windows](#windows)
7
11
-[Usage](#usage)
8
12
-[Interactive Mode](#interactive-mode)
9
13
-[Single Command Mode](#single-command-mode)
@@ -79,6 +83,18 @@ You can use the provided `Makefile` and `compose.yaml` to spin up a local develo
79
83
80
84
## Installation
81
85
86
+
### Binary
87
+
88
+
Linux binaries are available on the [releases page](https://github.com/UltimateForm/tcprcon-cli/releases/latest).
89
+
90
+
### Docker
91
+
92
+
```bash
93
+
docker run -it ghcr.io/ultimateform/tcprcon-cli:latest --address=192.168.1.100 --port=7778
94
+
```
95
+
96
+
### Go
97
+
82
98
```bash
83
99
go install github.com/UltimateForm/tcprcon-cli@latest
84
100
```
@@ -93,6 +109,12 @@ cd tcprcon-cli
93
109
go build -o tcprcon-cli .
94
110
```
95
111
112
+
### Windows
113
+
114
+
Windows is not natively supported due to Unix-specific terminal dependencies. Use [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) or the Docker image above.
115
+
116
+
Might change my mind about supporting windows in the future but given that this is essentially a CLI app windows is kind of an after thought for me... and there's likely a better UI app for windows out there.
0 commit comments