remove new-app.sh, update docs to reference app.sh directly

This commit is contained in:
2026-03-20 20:14:16 -04:00
parent 787e747fa4
commit 43fc8c2e7b
5 changed files with 9 additions and 23 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/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"