Skip to content

Commit a4a19d4

Browse files
committed
live on vercel
1 parent 15a8f66 commit a4a19d4

File tree

186 files changed

+66999
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+66999
-0
lines changed

2d-breakout-game/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

age-calculator/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

binary-converter/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

bookly/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

calorie-counter/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

canvas/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

cash-register-project/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

character-counter/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

date-formatter/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

deploy-all.sh

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/bash
2+
3+
# Store current folder
4+
BASE_DIR=$(pwd)
5+
echo "📁 Starting bulk deployment from: $BASE_DIR"
6+
echo "---------------------------------------------"
7+
8+
# Create/clear output file
9+
OUTPUT_FILE="$BASE_DIR/deployed-projects.txt"
10+
> "$OUTPUT_FILE"
11+
12+
# Loop through all subfolders
13+
for dir in */; do
14+
echo "🚀 Deploying: $dir"
15+
cd "$dir"
16+
17+
# Deploy using Vercel CLI (must be logged in already)
18+
LIVE_URL=$(vercel --prod --confirm 2>/dev/null | grep -Eo 'https://[^ ]+')
19+
20+
if [[ -n "$LIVE_URL" ]]; then
21+
echo "$dir$LIVE_URL"
22+
echo "$dir$LIVE_URL" >> "$OUTPUT_FILE"
23+
else
24+
echo "$dir → Deployment failed"
25+
echo "$dir → FAILED" >> "$OUTPUT_FILE"
26+
fi
27+
28+
cd ..
29+
echo "---------------------------------------------"
30+
done
31+
32+
echo "🎉 Done! All results saved to deployed-projects.txt"

0 commit comments

Comments
 (0)