mirror of
https://github.com/davila7/claude-code-templates.git
synced 2026-09-19 01:30:23 +08:00
d1f561f914
- Migrate all API endpoints from api/ (Vercel serverless) to dashboard/src/pages/api/ (Astro routes) - track-download-supabase, track-command-usage, track-installation-outcome, track-website-events - collections (index, [id], items) - health-check, claude-code-check, discord/interactions - Add shared API libs: cors.ts, neon.ts, auth.ts, changelog-parser.ts - Add @supabase/supabase-js, @neondatabase/serverless, discord-interactions, @clerk/backend deps - Remove catch-all API proxy ([...path].ts) - APIs are now native Astro routes - Serve components.json and trending-data.json from dashboard/public/ - Switch to same-origin fetching (relative URLs) for data files - Add dashboard/vercel.json with crons and CORS headers - Simplify CI/CD to single deploy target (dashboard project) - Update deploy script and package.json scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Deploy script for claude-code-templates
|
|
# Deploys the Astro dashboard which serves both www.aitmpl.com and app.aitmpl.com
|
|
#
|
|
# Required env vars (from .env):
|
|
# VERCEL_ORG_ID, VERCEL_DASHBOARD_PROJECT_ID
|
|
#
|
|
# Usage:
|
|
# ./scripts/deploy.sh # Deploy www + app.aitmpl.com
|
|
# ./scripts/deploy.sh dashboard # Same as above (backwards compat)
|
|
|
|
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
# Load .env if present
|
|
if [[ -f "$REPO_ROOT/.env" ]]; then
|
|
set -a
|
|
source "$REPO_ROOT/.env"
|
|
set +a
|
|
fi
|
|
|
|
# Validate required vars
|
|
for var in VERCEL_ORG_ID VERCEL_DASHBOARD_PROJECT_ID; do
|
|
if [[ -z "${!var:-}" ]]; then
|
|
echo "Error: $var is not set. Add it to .env" >&2
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
deploy() {
|
|
echo "=> Deploying www.aitmpl.com + app.aitmpl.com (Astro dashboard)..."
|
|
VERCEL_ORG_ID="$VERCEL_ORG_ID" \
|
|
VERCEL_PROJECT_ID="$VERCEL_DASHBOARD_PROJECT_ID" \
|
|
npx vercel --prod --yes --cwd "$REPO_ROOT"
|
|
echo "=> Deployed successfully."
|
|
}
|
|
|
|
case "${1:-}" in
|
|
""|dashboard|all)
|
|
deploy
|
|
;;
|
|
*)
|
|
echo "Usage: $0 [dashboard]"
|
|
echo ""
|
|
echo " Deploys the Astro dashboard serving www.aitmpl.com + app.aitmpl.com"
|
|
exit 1
|
|
;;
|
|
esac
|