get.codex.storage/README.md
Slava ab8faf8250
feat: add devnet scripts (#34)
* feat: add a way to get marketplace address from url

* feat: add devnet scripts
2025-07-03 21:50:44 +03:00

106 lines
1.9 KiB
Markdown

## Get Codex
### Linux, macOS and Windows (msys2)
```shell
# latest version
curl -s https://get.codex.storage/install.sh | bash
```
```shell
# specific version
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
```
```shell
# latest codex and cirdl
curl -s https://get.codex.storage/install.sh | CIRDL=true bash
```
```shell
# codex and cirdl with required libraries on Windows with msys2
curl -s https://get.codex.storage/install.sh | CIRDL=true WINDOWS_LIBS=true bash
```
```shell
# help
curl -s https://get.codex.storage/install.sh | bash -s help
```
### Windows
```cmd
:: latest version
curl -sO https://get.codex.storage/install.cmd && install.cmd
```
```cmd
:: specific version
curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
```
```cmd
:: latest codex and cirdl
curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & install.cmd
```
```cmd
:: codex and cirdl without libraries
curl -sO https://get.codex.storage/install.cmd && set CIRDL=true & set WINDOWS_LIBS=true & install.cmd
```
```cmd
:: help
curl -sO https://get.codex.storage/install.cmd && install.cmd help
```
## Join Codex Testnet
### Linux, macOS and Windows (msys2)
```shell
# Create a directory
mkdir codex-testnet && cd codex-testnet
```
```shell
# Install Codex
curl -s https://get.codex.storage/testnet/install.sh | bash
```
```shell
# Generate key
curl -s https://get.codex.storage/testnet/generate.sh | bash
```
```shell
# Run Codex
curl -s https://get.codex.storage/testnet/run.sh | bash
```
## Join Codex Devnet
### Linux, macOS and Windows (msys2)
```shell
# Create a directory
mkdir codex-devnet && cd codex-devnet
```
```shell
# Install Codex
curl -s https://get.codex.storage/devnet/install.sh | bash
```
```shell
# Generate key
curl -s https://get.codex.storage/devnet/generate.sh | bash
```
```shell
# Run Codex
curl -s https://get.codex.storage/devnet/run.sh | bash
```