-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeploy.sh
53 lines (36 loc) · 1.08 KB
/
deploy.sh
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
51
52
53
#!/bin/bash
# Ensure the script stops if any command fails
set -e
# Variables
DIR="/var/www/codehacks"
BRANCH="main"
REMOTE="origin"
echo "Navigating to project directory: $DIR"
cd $DIR
echo "Pulling latest changes from $REMOTE/$BRANCH..."
git pull $REMOTE $BRANCH
echo "Installing Node.js dependencies..."
npm install
echo "Installing Composer dependencies..."
composer install
echo "Setting application environment to production..."
php artisan config:cache
echo "Clearing Laravel cache..."
php artisan cache:clear
echo "Clearing route cache..."
php artisan route:clear
echo "Caching routes for faster performance..."
php artisan route:cache
echo "Clearing Laravel configuration cache..."
php artisan config:clear
echo "Caching Laravel configuration for faster performance..."
php artisan config:cache
echo "Running Laravel migrations..."
php artisan migrate
echo "Clearing Laravel view cache..."
php artisan view:clear
echo "Optimizing the framework for better performance..."
php artisan optimize
echo "npm building the project..."
npm run build
echo "Script completed successfully!"