#!/bin/bash set -euo pipefail # Thin wrapper — delegates to app.sh all if [ -z "${1:-}" ]; then echo "Usage: ./tools/new-app.sh " echo " Example: ./tools/new-app.sh example.com" echo "" echo "For individual steps, use: ./tools/app.sh " exit 1 fi exec "$(dirname "$0")/app.sh" all "$1"