-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
50 lines (44 loc) · 1.67 KB
/
Copy pathdeploy.sh
File metadata and controls
50 lines (44 loc) · 1.67 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# Maria Lourdes Mansion - Netlify Deployment Script
# Domain: Isabela.netlify.app
# Developer: Joel Laggui Jr.
echo "🚀 Starting deployment process for Maria Lourdes Mansion..."
echo "📍 Target Domain: Isabela.netlify.app"
# Check if we're in the correct directory
if [ ! -f "package.json" ]; then
echo "❌ Error: package.json not found. Please run this script from the project root."
exit 1
fi
# Install dependencies
echo "📦 Installing dependencies..."
npm install
# Build the project
echo "🔨 Building the project..."
npm run build
if [ $? -eq 0 ]; then
echo "✅ Build completed successfully!"
echo ""
echo "📋 Deployment Summary:"
echo " • Project: Maria Lourdes Mansion"
echo " • Domain: Isabela.netlify.app"
echo " • Logo: Custom Logo-domain.png implemented"
echo " • Performance: Optimized for 90fps"
echo " • Mobile: Responsive design with sticky header"
echo " • Security: Environment variables protected"
echo ""
echo "🌐 Next Steps for Netlify Deployment:"
echo " 1. Push this code to your Git repository"
echo " 2. Connect repository to Netlify"
echo " 3. Set custom domain to: Isabela.netlify.app"
echo " 4. Add environment variables in Netlify dashboard"
echo ""
echo "📞 Developer Contact:"
echo " • GitHub: https://github.com/GITLAGGUI"
echo " • LinkedIn: https://www.linkedin.com/in/joel-laggui-801104369/"
echo " • WhatsApp: +63 915 368 3496"
echo ""
echo "✨ Deployment ready! Your website is optimized and ready for production."
else
echo "❌ Build failed. Please check the error messages above."
exit 1
fi