Go to file
Slava 47e480bfb8
Add key generation script for Linux/macOS (#12)
* Adjust script outputs and help messages

* Add key generation script for Linux/macOS

* Update .gitignore

* Adjust workflow to copy all scripts
2024-11-11 18:33:34 +02:00
.github/workflows Add key generation script for Linux/macOS (#12) 2024-11-11 18:33:34 +02:00
.gitattributes Add installation script for Windows (#7) 2024-11-08 12:15:24 +02:00
.gitignore Add key generation script for Linux/macOS (#12) 2024-11-11 18:33:34 +02:00
CNAME Initial commit 2024-10-15 09:51:29 +03:00
LICENSE-APACHE-2.0 Initial commit 2024-10-15 09:51:29 +03:00
LICENSE-MIT Initial commit 2024-10-15 09:51:29 +03:00
README.md Fix installation commands for Windows (#9) 2024-11-08 12:29:05 +02:00
generate.sh Add key generation script for Linux/macOS (#12) 2024-11-11 18:33:34 +02:00
index.html Fix index file indentations (#11) 2024-11-08 19:03:54 +02:00
install.cmd Add installation script for Windows (#7) 2024-11-08 12:15:24 +02:00
install.sh Add key generation script for Linux/macOS (#12) 2024-11-11 18:33:34 +02:00

README.md

Get Codex

Linux, macOS and Windows (msys2)

# latest version
curl -s https://get.codex.storage/install.sh | bash
# specific version
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
# latest codex and cirdl
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
# codex and cirdl with required libraries on Windows with msys2
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true WINDOWS_LIBS=true bash
# help
curl -s https://get.codex.storage/install.sh | bash -s help

Windows

:: latest version
curl -sO https://get.codex.storage/install.cmd && install.cmd
:: specific version
curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
:: latest codex and cirdl
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & install.cmd
:: codex and cirdl without libraries
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=true & install.cmd
:: help
curl -sO https://get.codex.storage/install.cmd && install.cmd help