File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+ .\f xmanager-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)
You can’t perform that action at this time.
0 commit comments