Add Join Codex Testnet in Readme

This commit is contained in:
Slava 2024-11-18 22:15:25 +02:00
parent 9e52491045
commit 173aab0899
No known key found for this signature in database
GPG Key ID: 351E7AA9BD0DFEB8

View File

@ -1,4 +1,4 @@
# Get Codex ## Get Codex
### Linux, macOS and Windows (msys2) ### Linux, macOS and Windows (msys2)
@ -29,27 +29,42 @@ curl -s https://get.codex.storage/install.sh | bash -s help
### Windows ### Windows
```batch ```cmd
:: latest version :: latest version
curl -sO https://get.codex.storage/install.cmd && install.cmd curl -sO https://get.codex.storage/install.cmd && install.cmd
``` ```
```batch ```cmd
:: specific version :: specific version
curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
``` ```
```batch ```cmd
:: latest codex and cirdl :: latest codex and cirdl
curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & install.cmd curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & install.cmd
``` ```
```batch ```cmd
:: codex and cirdl without libraries :: codex and cirdl without libraries
curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & set WINDOWS_LIBS=true & install.cmd curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & set WINDOWS_LIBS=true & install.cmd
``` ```
```batch ```cmd
:: help :: help
curl -sO https://get.codex.storage/install.cmd && install.cmd help curl -sO https://get.codex.storage/install.cmd && install.cmd help
``` ```
## Join Codex Testnet
### Linux, macOS and Windows (msys2)
```shell
# Install Codex
curl -s https://get.codex.storage/testnet/install.sh | bash
# Generate key
curl -s https://get.codex.storage/testnet/generate.sh | bash
# Run Codex
curl -s https://get.codex.storage/testnet/run.sh | bash
```