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