Skip to content

Commit cfdc49a

Browse files
committed
doc(README): added execution explanations to skip downloading release
1 parent 929829e commit cfdc49a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,31 @@ A utility for assisting projects in setting up or updating a server with **fxMan
1919

2020
---
2121

22+
## Quick Install & Run
23+
24+
Run a single command in your terminal to download the latest executable as `fxmanager-installer` and immediately launch it:
25+
26+
### Windows (PowerShell)
27+
28+
```bash
29+
Invoke-WebRequest -Uri \
30+
'https://github.com/fxManagerProject/cli-installer/releases/latest/download/fxmanager-installer-windows-amd64.exe' \
31+
-OutFile 'fxmanager-installer.exe'; \
32+
.\fxmanager-installer.exe
33+
```
34+
35+
### Linux
36+
37+
```bash
38+
curl -sSL \
39+
'https://github.com/fxManagerProject/cli-installer/releases/latest/download/fxmanager-installer-linux-amd64' \
40+
-o fxmanager-installer && \
41+
chmod +x fxmanager-installer && \
42+
./fxmanager-installer
43+
```
44+
45+
---
46+
2247
## Usage
2348

2449
### Interactive Mode (Default)

0 commit comments

Comments
 (0)