Go to file
Slava fc00519885
Do not show extract progress on Windows when unzip is used (#20)
2024-11-17 11:19:34 +02:00
.github/workflows Adjust CI triggers (#18) 2024-11-12 21:51:38 +02:00
.gitattributes Add installation script for Windows (#7) 2024-11-08 12:15:24 +02:00
.gitignore Add run Codex script for Linux and macOS (#14) 2024-11-11 23:34:08 +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 Fix key file permissions on Windows (msys2) (#17) 2024-11-12 21:45:20 +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 Do not show extract progress on Windows when unzip is used (#20) 2024-11-17 11:19:34 +02:00
run.sh Fix key file permissions on Windows (msys2) (#17) 2024-11-12 21:45:20 +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