Aupdate Readme and index files with installation for Windows

This commit is contained in:
Slava 2024-11-08 12:13:29 +02:00
parent fc99cba9bb
commit 616c24e239
No known key found for this signature in database
GPG Key ID: 351E7AA9BD0DFEB8
2 changed files with 67 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Get Codex
### Linux and macOS
### Linux, macOS and Windows (msys2)
```shell
# latest version
@ -19,10 +19,37 @@ curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
```shell
# codex and cirdl with required libraries on Windows with msys2
curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true WINDOWS_LIBS=true bash
```
```shell
# help
curl -s https://get.codex.storage/install.sh | bash -s help
```
### Windows
```batch
:: latest version
curl -s https://get.codex.storage/install.cmd && install.cmd
```
```batch
:: specific version
curl -s https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
```
```batch
:: latest codex and cirdl
curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & install.cmd
```
```batch
:: codex and cirdl without libraries
curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=true & install.cmd
```
```batch
:: help
curl -s https://get.codex.storage/install.cmd && install.cmd help
```

View File

@ -14,7 +14,7 @@
<body>
<h3>
Get Codex
Get Codex - Linux/macOS
</h3>
<p>
@ -46,7 +46,43 @@
# codex and cirdl with required libraries on Windows with msys2
</span>
<br>
curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true WINDOWS_LIBS=true bash
</p>
<br>
<h3>
Get Codex - Windows
</h3>
<p>
<span style="color:grey;">
# latest version
</span>
<br>
curl -s https://get.codex.storage/install.cmd && install.cmd
</p>
<p>
<span style="color:grey;">
# specific version
</span>
<br>
curl -s https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
</p>
<p>
<span style="color:grey;">
# latest codex and cirdl
</span>
<br>
curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true install.cmd
</p>
<p>
<span style="color:grey;">
# codex and cirdl without libraries
</span>
<br>
curl -s https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=false & install.cmd
</p>
</body>
</html>