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

18 lines
331 B
Bash
Executable File

# Codex Devnet - Install
# Variables
set -a
BASE_SCRIPT="https://get.codex.storage/install.sh"
SCRIPT_URL="https://get.codex.storage/devnet/install.sh"
INSTALL_DIR="${INSTALL_DIR:-.}"
set +a
# Help
if [[ $1 == *"help"* ]] ; then
curl -s "${BASE_SCRIPT}" | bash -s -- help
exit 0
fi
# Install
curl -s "${BASE_SCRIPT}" | bash