#!/usr/bin/env bash # Shared settings for every script in this module. MODULE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" OUT="$MODULE_DIR/docs/output" JAR="$MODULE_DIR/target/resilience-1.0.0.jar" PORT="${PORT:-8081}" BASE="http://localhost:$PORT" PIDFILE="$MODULE_DIR/target/app.pid" LOG="$MODULE_DIR/target/app.log" mkdir -p "$OUT"