mirror of
https://github.com/logos-storage/get.codex.storage.git
synced 2026-01-02 21:23:09 +00:00
* Add .gitignore * Add install commands to the Readme Signed-off-by: Slava <20563034+veaceslavdoina@users.noreply.github.com> * Refactor installation script for Linux/macOS --------- Signed-off-by: Slava <20563034+veaceslavdoina@users.noreply.github.com>
29 lines
573 B
Markdown
29 lines
573 B
Markdown
# Get Codex
|
|
|
|
### Linux and macOS
|
|
|
|
```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 | 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
|
|
```
|
|
|
|
```shell
|
|
# help
|
|
curl -s https://get.codex.storage/install.sh | bash -s help
|
|
```
|