Quick start with Xygeni DAST
Requirements
Step 1 — Create the install directory and ensure it is on your PATH
PATH# 1. Create the directory (idempotent)
mkdir -p ~/.local/bin
# 2. Make sure it is on PATH for the current shell
case ":$PATH:" in *":$HOME/.local/bin:"*) ;; *) export PATH="$HOME/.local/bin:$PATH" ;; esac
# 3. Persist for future shells (only needed once per shell rc)
grep -q '\.local/bin' ~/.bashrc 2>/dev/null \
|| echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
# zsh users: replace ~/.bashrc with ~/.zshrcecho "$PATH" | tr ':' '\n' | grep -F "$HOME/.local/bin" # should print the path# 1. Create the directory
mkdir -p ~/.local/bin
# 2. Add to PATH for the current shell
export PATH="$HOME/.local/bin:$PATH"
# 3. Persist for future shells (zsh is the default since macOS Catalina)
grep -q '\.local/bin' ~/.zshrc 2>/dev/null \
|| echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
# bash users: replace ~/.zshrc with ~/.bash_profileecho "$PATH" | tr ':' '\n' | grep -F "$HOME/.local/bin"Step 2 — Install the wrapper from the Docker image
Step 3 — Launch a web application
Quick Start
Last updated

