-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy-render.sh
More file actions
executable file
Β·30 lines (24 loc) Β· 985 Bytes
/
Copy pathdeploy-render.sh
File metadata and controls
executable file
Β·30 lines (24 loc) Β· 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# Quick deployment script for Render
echo "π Deploying TS-ErrorsAnalysis to Render..."
echo "π Step 1: Create render.yaml (already done β)"
echo ""
echo "π Step 2: Deploy to Render"
echo " 1. Go to: https://dashboard.render.com/select-repo"
echo " 2. Connect your GitHub: corzogac/TS-ErrorsAnalysis"
echo " 3. Select branch: claude/add-claude-documentation-d60DI"
echo " 4. Render will detect render.yaml and auto-configure!"
echo " 5. Click 'Apply'"
echo ""
echo "π Step 3: Deploy Frontend to Vercel"
echo " 1. Go to: https://vercel.com/new"
echo " 2. Import: corzogac/TS-ErrorsAnalysis"
echo " 3. Root Directory: frontend"
echo " 4. Environment Variables:"
echo " VITE_API_URL=<your-render-backend-url>"
echo " 5. Deploy!"
echo ""
echo "π― Alternative: One-Command Deploy"
echo " Click: https://render.com/deploy?repo=https://github.com/corzogac/TS-ErrorsAnalysis"
echo ""
echo "π Full instructions: See DEPLOYMENT.md"